1
0

drop_table_stmt.go 130 B

12345678910
  1. package ast
  2. type DropTableStmt struct {
  3. IfExists bool
  4. Tables []*TableName
  5. }
  6. func (n *DropTableStmt) Pos() int {
  7. return 0
  8. }