create_schema_stmt.go 137 B

12345678910
  1. package ast
  2. type CreateSchemaStmt struct {
  3. Name *string
  4. IfNotExists bool
  5. }
  6. func (n *CreateSchemaStmt) Pos() int {
  7. return 0
  8. }