Adjust example to reduce confusion between a tsvector column and
authorTom Lane
Wed, 14 Nov 2007 23:48:55 +0000 (23:48 +0000)
committerTom Lane
Wed, 14 Nov 2007 23:48:55 +0000 (23:48 +0000)
an index, per Simon.

doc/src/sgml/textsearch.sgml

index 9366fdd240737cf99a41e530b42da4ce27d395bf..0a153c465cda2ee9f032d96c44ac9175df9f5e05 100644 (file)
@@ -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;