target_entry.go 345 B

1234567891011121314151617181920
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type TargetEntry struct {
  6. Xpr ast.Node
  7. Expr ast.Node
  8. Resno AttrNumber
  9. Resname *string
  10. Ressortgroupref Index
  11. Resorigtbl Oid
  12. Resorigcol AttrNumber
  13. Resjunk bool
  14. }
  15. func (n *TargetEntry) Pos() int {
  16. return 0
  17. }