/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/engine/postgresql/contrib/pg_visibility.go
97 строк
2 KB
Kyle Gray
chore!: Rename kyleconroy/sqlc to sqlc-dev/sqlc (#2523)
26 июл 2023, 19:12
Не верифицирован
26 июл 2023, 19:12
d361c5d
Код
Авторство
О чём код?
// 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 }