From a1715ac8f77cce628a69c434764dbd24e52bc875 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 14 Nov 2007 23:48:55 +0000 Subject: [PATCH] Adjust example to reduce confusion between a tsvector column and an index, per Simon. --- doc/src/sgml/textsearch.sgml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml index 9366fdd240..0a153c465c 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1,4 +1,4 @@ - + Full Text Search @@ -538,15 +538,15 @@ CREATE INDEX pgweb_idx ON pgweb USING gin(to_tsvector('english', title || body)) indexed when the other is NULL: -ALTER TABLE pgweb ADD COLUMN textsearch_index tsvector; -UPDATE pgweb SET textsearch_index = +ALTER TABLE pgweb ADD COLUMN textsearchable_index_col tsvector; +UPDATE pgweb SET textsearchable_index_col = to_tsvector('english', coalesce(title,'') || coalesce(body,'')); Then we create a GIN index to speed up the search: -CREATE INDEX textsearch_idx ON pgweb USING gin(textsearch_index); +CREATE INDEX textsearch_idx ON pgweb USING gin(textsearchable_index_col); Now we are ready to perform a fast full text search: @@ -554,7 +554,7 @@ CREATE INDEX textsearch_idx ON pgweb USING gin(textsearch_index); SELECT title FROM pgweb -WHERE to_tsquery('create & table') @@ textsearch_index +WHERE textsearchable_index_col @@ to_tsquery('create & table') ORDER BY last_mod_date DESC LIMIT 10; -- 2.40.0