field_store.go 246 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type FieldStore struct {
  6. Xpr ast.Node
  7. Arg ast.Node
  8. Newvals *ast.List
  9. Fieldnums *ast.List
  10. Resulttype Oid
  11. }
  12. func (n *FieldStore) Pos() int {
  13. return 0
  14. }