1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Code generated by sqlc-pg-gen. DO NOT EDIT.
- package contrib
- import (
- "github.com/sqlc-dev/sqlc/internal/sql/ast"
- "github.com/sqlc-dev/sqlc/internal/sql/catalog"
- )
- var funcsPostgresFdw = []*catalog.Function{
- {
- Name: "postgres_fdw_disconnect",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "text"},
- },
- },
- ReturnType: &ast.TypeName{Name: "boolean"},
- },
- {
- Name: "postgres_fdw_disconnect_all",
- Args: []*catalog.Argument{},
- ReturnType: &ast.TypeName{Name: "boolean"},
- },
- {
- Name: "postgres_fdw_get_connections",
- Args: []*catalog.Argument{},
- ReturnType: &ast.TypeName{Name: "record"},
- },
- {
- Name: "postgres_fdw_handler",
- Args: []*catalog.Argument{},
- ReturnType: &ast.TypeName{Name: "fdw_handler"},
- },
- {
- Name: "postgres_fdw_validator",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "text[]"},
- },
- {
- Type: &ast.TypeName{Name: "oid"},
- },
- },
- ReturnType: &ast.TypeName{Name: "void"},
- },
- }
- func PostgresFdw() *catalog.Schema {
- s := &catalog.Schema{Name: "pg_catalog"}
- s.Funcs = funcsPostgresFdw
- return s
- }
|