@@ -31,7 +31,11 @@ CREATE EXTENSION pg_tsparser;
31
31
</programlisting>
32
32
<para>
33
33
Once <filename>pg_tsparser</filename> is enabled, you can create
34
- your own text search configuration. For example:
34
+ your own text search configuration. In addition to <filename>pg_tsparser</filename>,
35
+ you can use any available dictionary.
36
+ </para>
37
+ <para>For example, you can create <literal>english_ts</literal> configuration
38
+ for the English language, as follows:
35
39
</para>
36
40
<programlisting>
37
41
CREATE TEXT SEARCH CONFIGURATION english_ts (
@@ -79,6 +83,9 @@ SELECT to_tsvector('english', 'rel-3.2-A') as def_parser,
79
83
'-3.2':2 'rel':1 | '3.2':3 'rel':2 'rel-3.2-a':1
80
84
(1 row)
81
85
</programlisting>
86
+ <para><emphasis role="strong">See Also</emphasis></para>
87
+ <para><xref linkend="sql-createtsconfig"></para>
88
+ <para><xref linkend="sql-altertsconfig"></para>
82
89
</sect2>
83
90
<sect2 id="pg-tsparser-authors">
84
91
<title>Authors</title>