next_value_expr.go 191 B

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