]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-ts-config.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-ts-config.txt
1
2 52.59. pg_ts_config #
3
4    The pg_ts_config catalog contains entries representing text search
5    configurations. A configuration specifies a particular text search
6    parser and a list of dictionaries to use for each of the parser's
7    output token types. The parser is shown in the pg_ts_config entry, but
8    the token-to-dictionary mapping is defined by subsidiary entries in
9    pg_ts_config_map.
10
11    PostgreSQL's text search features are described at length in
12    Chapter 12.
13
14    Table 52.59. pg_ts_config Columns
15
16    Column Type
17
18    Description
19
20    oid oid
21
22    Row identifier
23
24    cfgname name
25
26    Text search configuration name
27
28    cfgnamespace oid (references pg_namespace.oid)
29
30    The OID of the namespace that contains this configuration
31
32    cfgowner oid (references pg_authid.oid)
33
34    Owner of the configuration
35
36    cfgparser oid (references pg_ts_parser.oid)
37
38    The OID of the text search parser for this configuration