1#----------------------------------------------------------------------
2#
3# pg_ts_template.dat
4#    Initial contents of the pg_ts_template system catalog.
5#
6# Portions Copyright (c) 1996-2021, 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[
14
15{ oid => '3727',
16  descr => 'simple dictionary: just lower case and check for stopword',
17  tmplname => 'simple', tmplinit => 'dsimple_init',
18  tmpllexize => 'dsimple_lexize' },
19{ oid => '3730', descr => 'synonym dictionary: replace word by its synonym',
20  tmplname => 'synonym', tmplinit => 'dsynonym_init',
21  tmpllexize => 'dsynonym_lexize' },
22{ oid => '3733', descr => 'ispell dictionary',
23  tmplname => 'ispell', tmplinit => 'dispell_init',
24  tmpllexize => 'dispell_lexize' },
25{ oid => '3742',
26  descr => 'thesaurus dictionary: phrase by phrase substitution',
27  tmplname => 'thesaurus', tmplinit => 'thesaurus_init',
28  tmpllexize => 'thesaurus_lexize' },
29
30]
31