pg_ts_template.dat 1.1 KB

123456789101112131415161718192021222324252627282930
  1. #----------------------------------------------------------------------
  2. #
  3. # pg_ts_template.dat
  4. # Initial contents of the pg_ts_template system catalog.
  5. #
  6. # Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. # Portions Copyright (c) 1994, Regents of the University of California
  8. #
  9. # src/include/catalog/pg_ts_template.dat
  10. #
  11. #----------------------------------------------------------------------
  12. [
  13. { oid => '3727',
  14. descr => 'simple dictionary: just lower case and check for stopword',
  15. tmplname => 'simple', tmplinit => 'dsimple_init',
  16. tmpllexize => 'dsimple_lexize' },
  17. { oid => '3730', descr => 'synonym dictionary: replace word by its synonym',
  18. tmplname => 'synonym', tmplinit => 'dsynonym_init',
  19. tmpllexize => 'dsynonym_lexize' },
  20. { oid => '3733', descr => 'ispell dictionary',
  21. tmplname => 'ispell', tmplinit => 'dispell_init',
  22. tmpllexize => 'dispell_lexize' },
  23. { oid => '3742',
  24. descr => 'thesaurus dictionary: phrase by phrase substitution',
  25. tmplname => 'thesaurus', tmplinit => 'thesaurus_init',
  26. tmpllexize => 'thesaurus_lexize' },
  27. ]