tcn.go 450 B

12345678910111213141516171819202122
  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 funcsTcn = []*catalog.Function{
  8. {
  9. Name: "triggered_change_notification",
  10. Args: []*catalog.Argument{},
  11. ReturnType: &ast.TypeName{Name: "trigger"},
  12. },
  13. }
  14. func Tcn() *catalog.Schema {
  15. s := &catalog.Schema{Name: "pg_catalog"}
  16. s.Funcs = funcsTcn
  17. return s
  18. }