2 52.63. pg_ts_template #
4 The pg_ts_template catalog contains entries defining text search
5 templates. A template is the implementation skeleton for a class of
6 text search dictionaries. Since a template must be implemented by
7 C-language-level functions, creation of new templates is restricted to
10 PostgreSQL's text search features are described at length in
13 Table 52.63. pg_ts_template Columns
25 Text search template name
27 tmplnamespace oid (references pg_namespace.oid)
29 The OID of the namespace that contains this template
31 tmplinit regproc (references pg_proc.oid)
33 OID of the template's initialization function (zero if none)
35 tmpllexize regproc (references pg_proc.oid)
37 OID of the template's lexize function