create_table_as_stmt.go 270 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateTableAsStmt struct {
  6. Query ast.Node
  7. Into *IntoClause
  8. Relkind ObjectType
  9. IsSelectInto bool
  10. IfNotExists bool
  11. }
  12. func (n *CreateTableAsStmt) Pos() int {
  13. return 0
  14. }