create_function_stmt.go 287 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateFunctionStmt struct {
  6. Replace bool
  7. Funcname *ast.List
  8. Parameters *ast.List
  9. ReturnType *TypeName
  10. Options *ast.List
  11. WithClause *ast.List
  12. }
  13. func (n *CreateFunctionStmt) Pos() int {
  14. return 0
  15. }