Table pg_ts_dict
\d pg_ts_dict
Table "public.pg_ts_dict"
Column | Type | Modifiers
-----------------+------+-----------
dict_name | text | not null
dict_init | oid |
dict_initoption | text |
dict_lexize | oid | not null
dict_comment | text |
Indexes:
"pg_ts_dict_pkey" primary key, btree (dict_name)
select * from pg_ts_dict;
dict_name |dict_init| dict_initoption |dict_lexize| dict_comment
---------------+---------+-------------------------------------------+-----------+------------------------------
simple | 17155 | | 17156 |Simple example of dictionary.
en_stem | 17158 |/usr/local/pgsql/share/contrib/english.stop| 17159 |English Stemmer. Snowball.
ru_stem | 17161 |/usr/local/pgsql/share/contrib/russian.stop| 17159 |Russian Stemmer. Snowball.
ispell_template| 17163 | | 17164 |ISpell interface.
Must have .dict and .aff files
synonym | 17166 | | 17167 |Example of synonym dictionary
(5 rows)
|