diff options
author | Tom Lane | 2007-12-13 06:32:47 +0000 |
---|---|---|
committer | Tom Lane | 2007-12-13 06:32:47 +0000 |
commit | e211470b19566c5dbbfb6a4db496455c1249cc8e (patch) | |
tree | 5d24c1e3cd4fd835cb0258c4058786c35e50b7d0 /doc/src | |
parent | cede2491b8fc856aa31b773aca4af63ac387fb7a (diff) |
Change a couple of examples to say ALTER MAPPING instead of ADD MAPPING,
per Oleg.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/textsearch.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml index e154f6a19b5..a121741bbe2 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.39 2007/11/28 15:42:31 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.40 2007/12/13 06:32:47 tgl Exp $ --> <chapter id="textsearch"> <title id="textsearch-title">Full Text Search</title> @@ -2376,7 +2376,7 @@ CREATE TEXT SEARCH DICTIONARY thesaurus_simple ( <programlisting> 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; </programlisting> </para> @@ -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; </programlisting> Now we can see how it works. |