prepare_stmt.go 203 B

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