From: Tom Lane Date: Thu, 13 Dec 2007 06:32:47 +0000 (+0000) Subject: Change a couple of examples to say ALTER MAPPING instead of ADD MAPPING, X-Git-Tag: REL8_3_RC1~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e211470b19566c5dbbfb6a4db496455c1249cc8e;p=postgresql Change a couple of examples to say ALTER MAPPING instead of ADD MAPPING, per Oleg. --- diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml index e154f6a19b..a121741bbe 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1,4 +1,4 @@ - + Full Text Search @@ -2376,7 +2376,7 @@ CREATE TEXT SEARCH DICTIONARY thesaurus_simple ( ALTER TEXT SEARCH CONFIGURATION russian - ADD MAPPING FOR asciiword, asciihword, hword_asciipart WITH thesaurus_simple; + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart WITH thesaurus_simple; @@ -2405,7 +2405,7 @@ CREATE TEXT SEARCH DICTIONARY thesaurus_astro ( ); ALTER TEXT SEARCH CONFIGURATION russian - ADD MAPPING FOR asciiword, asciihword, hword_asciipart WITH thesaurus_astro, english_stem; + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart WITH thesaurus_astro, english_stem; Now we can see how it works.