alter_table_set_schema_stmt.go 153 B

12345678910
  1. package ast
  2. type AlterTableSetSchemaStmt struct {
  3. Table *TableName
  4. NewSchema *string
  5. }
  6. func (n *AlterTableSetSchemaStmt) Pos() int {
  7. return 0
  8. }