row_compare_expr.go 324 B

12345678910111213141516171819
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type RowCompareExpr struct {
  6. Xpr ast.Node
  7. Rctype RowCompareType
  8. Opnos *ast.List
  9. Opfamilies *ast.List
  10. Inputcollids *ast.List
  11. Largs *ast.List
  12. Rargs *ast.List
  13. }
  14. func (n *RowCompareExpr) Pos() int {
  15. return 0
  16. }