The pg_ts_template catalog provides information about text search templates.
| Column name | Data type | Description |
|---|---|---|
oid |
oid |
A row identifier. |
tmplname |
name |
The name of the text search template. |
tmplnamespace |
oid (references pg_namespace.oid) |
The OID of the namespace that contains this template. |
tmplinit |
regproc (references pg_proc.oid) |
The OID of the template’s initialization function. 0 – The template does not define an initialization function. |
tmpllexize |
regproc (references pg_proc.oid) |
The OID of the template’s lexize function. |