coerce_to_domain_value.go 253 B

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