range_table_func_col.go 322 B

12345678910111213141516171819
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type RangeTableFuncCol struct {
  6. Colname *string
  7. TypeName *TypeName
  8. ForOrdinality bool
  9. IsNotNull bool
  10. Colexpr ast.Node
  11. Coldefexpr ast.Node
  12. Location int
  13. }
  14. func (n *RangeTableFuncCol) Pos() int {
  15. return n.Location
  16. }