+linkend="guc-default-text-search-config"> was set accordingly. If you
+need to change it, see .
configuration. This can be done by either setting
default_text_search_config> in each session or supplying the
configuration name in every function call, e.g. to_tsquery('french',
-'friend'), to_tsvector('english', col). If you are using an expression index,
-you must also be sure to use the proper text search configuration every
-time an INSERT> or UPDATE> is executed because these
-will modify the index, or you can embed the configuration name into the
-expression index, e.g.:
+'friend'), to_tsvector('english', col). If you are using an expression
+index you must embed the configuration name into the expression index, e.g.:
CREATE INDEX pgweb_idx ON pgweb USING gin(to_tsvector('french', title || body));
-And if you do that, make sure you specify the configuration name in the
+And for an expression index, specify the configuration name in the
WHERE> clause as well so the expression index will be used.