12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // 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 funcsPgVisibility = []*catalog.Function{
- {
- Name: "pg_check_frozen",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- },
- ReturnType: &ast.TypeName{Name: "tid"},
- },
- {
- Name: "pg_check_visible",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- },
- ReturnType: &ast.TypeName{Name: "tid"},
- },
- {
- Name: "pg_truncate_visibility_map",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- },
- ReturnType: &ast.TypeName{Name: "void"},
- },
- {
- Name: "pg_visibility",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- },
- ReturnType: &ast.TypeName{Name: "record"},
- },
- {
- Name: "pg_visibility",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- {
- Name: "blkno",
- Type: &ast.TypeName{Name: "bigint"},
- },
- },
- ReturnType: &ast.TypeName{Name: "record"},
- },
- {
- Name: "pg_visibility_map",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- },
- ReturnType: &ast.TypeName{Name: "record"},
- },
- {
- Name: "pg_visibility_map",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- {
- Name: "blkno",
- Type: &ast.TypeName{Name: "bigint"},
- },
- },
- ReturnType: &ast.TypeName{Name: "record"},
- },
- {
- Name: "pg_visibility_map_summary",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regclass"},
- },
- },
- ReturnType: &ast.TypeName{Name: "record"},
- },
- }
- func PgVisibility() *catalog.Schema {
- s := &catalog.Schema{Name: "pg_catalog"}
- s.Funcs = funcsPgVisibility
- return s
- }
|