join_expr.go 306 B

1234567891011121314151617181920
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type JoinExpr struct {
  6. Jointype JoinType
  7. IsNatural bool
  8. Larg ast.Node
  9. Rarg ast.Node
  10. UsingClause *ast.List
  11. Quals ast.Node
  12. Alias *Alias
  13. Rtindex int
  14. }
  15. func (n *JoinExpr) Pos() int {
  16. return 0
  17. }