]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-ts-template.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-ts-template.txt
1
2 52.63. pg_ts_template #
3
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
8    database superusers.
9
10    PostgreSQL's text search features are described at length in
11    Chapter 12.
12
13    Table 52.63. pg_ts_template Columns
14
15    Column Type
16
17    Description
18
19    oid oid
20
21    Row identifier
22
23    tmplname name
24
25    Text search template name
26
27    tmplnamespace oid (references pg_namespace.oid)
28
29    The OID of the namespace that contains this template
30
31    tmplinit regproc (references pg_proc.oid)
32
33    OID of the template's initialization function (zero if none)
34
35    tmpllexize regproc (references pg_proc.oid)
36
37    OID of the template's lexize function