declare_cursor_stmt.go 215 B

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