1
0

view_stmt.go 302 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type ViewStmt struct {
  6. View *RangeVar
  7. Aliases *ast.List
  8. Query ast.Node
  9. Replace bool
  10. Options *ast.List
  11. WithCheckOption ViewCheckOption
  12. }
  13. func (n *ViewStmt) Pos() int {
  14. return 0
  15. }