1
0

pgrowlocks.go 513 B

123456789101112131415161718192021222324252627
  1. // Code generated by sqlc-pg-gen. DO NOT EDIT.
  2. package contrib
  3. import (
  4. "github.com/sqlc-dev/sqlc/internal/sql/ast"
  5. "github.com/sqlc-dev/sqlc/internal/sql/catalog"
  6. )
  7. var funcsPgrowlocks = []*catalog.Function{
  8. {
  9. Name: "pgrowlocks",
  10. Args: []*catalog.Argument{
  11. {
  12. Name: "relname",
  13. Type: &ast.TypeName{Name: "text"},
  14. },
  15. },
  16. ReturnType: &ast.TypeName{Name: "record"},
  17. },
  18. }
  19. func Pgrowlocks() *catalog.Schema {
  20. s := &catalog.Schema{Name: "pg_catalog"}
  21. s.Funcs = funcsPgrowlocks
  22. return s
  23. }