1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // 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 funcsBtreeGin = []*catalog.Function{
- {
- Name: "gin_enum_cmp",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "anyenum"},
- },
- {
- Type: &ast.TypeName{Name: "anyenum"},
- },
- },
- ReturnType: &ast.TypeName{Name: "integer"},
- },
- {
- Name: "gin_numeric_cmp",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "numeric"},
- },
- {
- Type: &ast.TypeName{Name: "numeric"},
- },
- },
- ReturnType: &ast.TypeName{Name: "integer"},
- },
- }
- func BtreeGin() *catalog.Schema {
- s := &catalog.Schema{Name: "pg_catalog"}
- s.Funcs = funcsBtreeGin
- return s
- }
|