drop_stmt.go 244 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type DropStmt struct {
  6. Objects *ast.List
  7. RemoveType ObjectType
  8. Behavior DropBehavior
  9. MissingOk bool
  10. Concurrent bool
  11. }
  12. func (n *DropStmt) Pos() int {
  13. return 0
  14. }