set_operation_stmt.go 352 B

1234567891011121314151617181920
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type SetOperationStmt struct {
  6. Op SetOperation
  7. All bool
  8. Larg ast.Node
  9. Rarg ast.Node
  10. ColTypes *ast.List
  11. ColTypmods *ast.List
  12. ColCollations *ast.List
  13. GroupClauses *ast.List
  14. }
  15. func (n *SetOperationStmt) Pos() int {
  16. return 0
  17. }