case_test_expr.go 215 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CaseTestExpr struct {
  6. Xpr ast.Node
  7. TypeId Oid
  8. TypeMod int32
  9. Collation Oid
  10. }
  11. func (n *CaseTestExpr) Pos() int {
  12. return 0
  13. }