1234567891011121314151617181920212223242526272829303132333435363738 |
- // 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 funcsUnaccent = []*catalog.Function{
- {
- Name: "unaccent",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "regdictionary"},
- },
- {
- Type: &ast.TypeName{Name: "text"},
- },
- },
- ReturnType: &ast.TypeName{Name: "text"},
- },
- {
- Name: "unaccent",
- Args: []*catalog.Argument{
- {
- Type: &ast.TypeName{Name: "text"},
- },
- },
- ReturnType: &ast.TypeName{Name: "text"},
- },
- }
- func Unaccent() *catalog.Schema {
- s := &catalog.Schema{Name: "pg_catalog"}
- s.Funcs = funcsUnaccent
- return s
- }
|