Update MD5 mention for long values.
authorBruce Momjian
Thu, 11 Aug 2005 13:22:07 +0000 (13:22 +0000)
committerBruce Momjian
Thu, 11 Aug 2005 13:22:07 +0000 (13:22 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index e1c3cf1999abedc644eb6030192c70297c757e5b..23994765bf42d4c37f019961d6998cb431da8889 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Wed Aug 10 15:29:42 EDT 2005
+   Last updated: Thu Aug 11 09:21:58 EDT 2005
    
    Current maintainer: Bruce Momjian ([email protected])
    
    
    One limitation is that indexes can not be created on columns longer
    than about 2,000 characters. Fortunately, such indexes are rarely
-   needed. Uniqueness is best guaranteed using another column that is an
-   MD5 hash of the long column, and full text indexing allows for
-   searching of words within the column.
+   needed. Uniqueness is best guaranteed by a funtion index of an MD5
+   hash of the long column, and full text indexing allows for searching
+   of words within the column.
    
   4.5) How much database disk space is required to store data from a typical
   text file?
index 07dd956e2ef74e44084efb970f2a3d40350c7a0b..2d46904eb323b0da83e0a4272f142945560cbc7a 100644 (file)
@@ -10,7 +10,7 @@
   alink="#0000ff">
     

Frequently Asked Questions (FAQ) for PostgreSQL

 
-    

Last updated: Wed Aug 10 15:29:42 EDT 2005

+    

Last updated: Thu Aug 11 09:21:58 EDT 2005

 
     

Current maintainer: Bruce Momjian (

@@ -619,8 +619,8 @@ table?unlimited
 
     

One limitation is that indexes can not be created on columns

     longer than about 2,000 characters. Fortunately, such indexes are
-    rarely needed. Uniqueness is best guaranteed using another column
-    that is an MD5 hash of the long column, and full text indexing
+    rarely needed. Uniqueness is best guaranteed by a funtion index
+    of an MD5 hash of the long column, and full text indexing
     allows for searching of words within the column.

 
     

4.5) How much database disk space is required