current_of_expr.go 229 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CurrentOfExpr struct {
  6. Xpr ast.Node
  7. Cvarno Index
  8. CursorName *string
  9. CursorParam int
  10. }
  11. func (n *CurrentOfExpr) Pos() int {
  12. return 0
  13. }