Add mention of full text indexing for word searches.
authorBruce Momjian
Tue, 9 Oct 2007 20:13:11 +0000 (20:13 +0000)
committerBruce Momjian
Tue, 9 Oct 2007 20:13:11 +0000 (20:13 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index 2ce673620e2ddf805539c0dc0661588a159de6e3..015ce4cfe2328dc2368d814678a7a92094940bc8 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Tue Oct 9 16:07:30 EDT 2007
+   Last updated: Tue Oct 9 16:13:00 EDT 2007
    
    Current maintainer: Bruce Momjian ([email protected])
    
      * The default C locale must be used during initdb because it is not
        possible to know the next-greatest character in a non-C locale.
        You can create a special text_pattern_ops index for such cases
-       that work only for LIKE indexing.
+       that work only for LIKE indexing. It is also possible to use full
+       text indexing for word searches.
        
-   In pre-8.0 releases, indexes often can not be used unless the data
-   types exactly match the index's column types. This was particularly
-   true of int2, int8, and numeric column indexes.
-   
   4.7) How do I see how the query optimizer is evaluating my query?
   
    See the EXPLAIN manual page.
index f8b797fb0d42722eb5048b30dda5ac885da351e4..e829f083147059744da9c00299daf1cb1d20514d 100644 (file)
@@ -10,7 +10,7 @@
   alink="#0000ff">
     

Frequently Asked Questions (FAQ) for PostgreSQL

 
-    

Last updated: Tue Oct  9 16:07:30 EDT 2007

+    

Last updated: Tue Oct  9 16:13:00 EDT 2007

 
     

Current maintainer: Bruce Momjian (

@@ -784,14 +784,11 @@ table?unlimited
     initdb because it is not possible to know the next-greatest
     character in a non-C locale.  You can create a special
     text_pattern_ops index for such cases that work only
-    for LIKE indexing.
+    for LIKE indexing.  It is also possible to use
+    full text indexing for word searches.
     
     
 
-    

In pre-8.0 releases, indexes often can not be used unless the data

-    types exactly match the index's column types.  This was particularly
-    true of int2, int8, and numeric column indexes.

-
     4.7) How do I see how the query optimizer is
     evaluating my query?