1
0

alter_table_stmt.go 144 B

1234567891011
  1. package ast
  2. type AlterTableStmt struct {
  3. Table *TableName
  4. Cmds *List
  5. // MissingOk bool
  6. }
  7. func (n *AlterTableStmt) Pos() int {
  8. return 0
  9. }