Update FAQ.
authorBruce Momjian
Sat, 13 Oct 2001 05:27:05 +0000 (05:27 +0000)
committerBruce Momjian
Sat, 13 Oct 2001 05:27:05 +0000 (05:27 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index 027d5aae86ec624c450b6e0f69b279831e18897f..334143ce5b26107122c992adbe9c58f1bde03162 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Fri Oct 12 23:53:35 EDT 2001
+   Last updated: Sat Oct 13 01:26:55 EDT 2001
    
    Current maintainer: Bruce Momjian ([email protected])
    
@@ -791,10 +791,10 @@ BYTEA           bytea           variable-length byte array (null-safe)
    by TOAST, so the space on disk might also be less than expected.
    
    CHAR() is best when storing strings that are usually the same length.
-   VARCHAR() is best when storing variable-length strings, but you want
-   to limit how long a string can be. TEXT is for strings of unlimited
-   length, maximum 1 gigabyte. BYTEA is for storing binary data,
-   particularly values that include NULL bytes.
+   VARCHAR() is best when storing variable-length strings but it limits
+   how long a string can be. TEXT is for strings of unlimited length,
+   maximum 1 gigabyte. BYTEA is for storing binary data, particularly
+   values that include NULL bytes.
    
     4.16.1) How do I create a serial/auto-incrementing field?
     
index 90e2588b6e9e1b4b3b0d29bdecb6f8ca3aa917b1..d3f5da6f8f04112ca143982ef668d292f19eb7a6 100644 (file)
@@ -12,7 +12,7 @@
   alink="#0000FF">
     

Frequently Asked Questions (FAQ) for PostgreSQL

 
-    

Last updated: Fri Oct 12 23:53:35 EDT 2001

+    

Last updated: Sat Oct 13 01:26:55 EDT 2001

 
     

Current maintainer: Bruce Momjian (

@@ -1003,11 +1003,13 @@ BYTEA           bytea           variable-length byte array (null-safe)
     stored out-of-line by TOAST, so the space on disk
     might also be less than expected.

 
-    

CHAR() is best when storing strings that are usually the

-    same length.  VARCHAR() is best when storing variable-length strings,
-    but you want to limit how long a string can be.  TEXT is for strings
-    of unlimited length, maximum 1 gigabyte.  BYTEA is for storing
-    binary data, particularly values that include NULL bytes.

+    

CHAR() is best when storing strings that are

+    usually the same length. VARCHAR() is best when
+    storing variable-length strings but it limits how long a
+    string can be. TEXT is for strings of unlimited
+    length, maximum 1 gigabyte. BYTEA is for storing
+    binary data, particularly values that include NULL
+    bytes.

     
     

4.16.1) How do I create a

     serial/auto-incrementing field?