create_table_stmt.go 164 B

1234567891011
  1. package ast
  2. type CreateTableStmt struct {
  3. IfNotExists bool
  4. Name *TableName
  5. Cols []*ColumnDef
  6. }
  7. func (n *CreateTableStmt) Pos() int {
  8. return 0
  9. }