1
0

drop_schema_stmt.go 131 B

12345678910
  1. package ast
  2. type DropSchemaStmt struct {
  3. Schemas []*String
  4. MissingOk bool
  5. }
  6. func (n *DropSchemaStmt) Pos() int {
  7. return 0
  8. }