Remove references to pre-7.1; too old.
authorBruce Momjian
Thu, 11 Jul 2002 16:38:08 +0000 (16:38 +0000)
committerBruce Momjian
Thu, 11 Jul 2002 16:38:08 +0000 (16:38 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index 469706db4013dd5e4d3326ddea344652a6411f4b..48e648b0a520c5397546ba9fbd32a258ab7e0133 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Thu Jul 11 12:35:53 EDT 2002
+   Last updated: Thu Jul 11 12:37:48 EDT 2002
    
    Current maintainer: Bruce Momjian ([email protected])
    
     
    The ~ operator does regular expression matching, and ~* does
    case-insensitive regular expression matching. The case-insensitive
-   variant of LIKE is called ILIKE in PostgreSQL 7.1 and later.
+   variant of LIKE is called ILIKE.
    
    Case-insensitive equality comparisons are normally expressed as:
     SELECT *
@@ -956,10 +956,9 @@ BYTEA           bytea           variable-length byte array (null-byte safe)
    
     4.18) Why do I get the error "ERROR: Memory exhausted in AllocSetAlloc()"?
     
-   If you are running a version older than 7.1, an upgrade may fix the
-   problem. Also it is possible you have run out of virtual memory on
-   your system, or your kernel has a low limit for certain resources. Try
-   this before starting postmaster:
+   You probably have run out of virtual memory on your system, or your
+   kernel has a low limit for certain resources. Try this before starting
+   postmaster:
     ulimit -d 262144
     limit datasize 256m
 
@@ -1012,8 +1011,8 @@ SELECT *
    
     4.23) How do I perform an outer join?
     
-   PostgreSQL 7.1 and later supports outer joins using the SQL standard
-   syntax. Here are two examples:
+   PostgreSQL supports outer joins using the SQL standard syntax. Here
+   are two examples:
     SELECT *
     FROM t1 LEFT OUTER JOIN t2 ON (t1.col = t2.col);
 
index f14c7330361206054addf9ae61b4e0aaf71f7eae..9343a586853e1113ec3ff103343c1b967d556068 100644 (file)
@@ -14,7 +14,7 @@
   alink="#0000ff">
     

Frequently Asked Questions (FAQ) for PostgreSQL

 
-    

Last updated: Thu Jul 11 12:35:53 EDT 2002

+    

Last updated: Thu Jul 11 12:37:48 EDT 2002

 
     

Current maintainer: Bruce Momjian (

     

The ~ operator does regular expression matching, and

     ~* does case-insensitive regular expression matching. The
     case-insensitive variant of LIKE is called
-    ILIKE in PostgreSQL 7.1 and later.

+    ILIKE.

 
     

Case-insensitive equality comparisons are normally expressed

     as:

@@ -1229,10 +1229,9 @@ BYTEA           bytea           variable-length byte array (null-byte safe)
     

4.18) Why do I get the error "ERROR:

     Memory exhausted in AllocSetAlloc()"?
 
-    

If you are running a version older than 7.1, an upgrade may fix

-    the problem. Also it is possible you have run out of virtual memory
-    on your system, or your kernel has a low limit for certain
-    resources. Try this before starting postmaster:

+    

You probably have run out of virtual memory on your system,

+    or your kernel has a low limit for certain resources. Try this
+    before starting postmaster:

 
     ulimit -d 262144
     limit datasize 256m
@@ -1301,8 +1300,8 @@ BYTEA           bytea           variable-length byte array (null-byte safe)
 
     

4.23) How do I perform an outer join?

 
-    

PostgreSQL 7.1 and later supports outer joins using the SQL

-    standard syntax. Here are two examples:

+    

PostgreSQL supports outer joins using the SQL standard syntax.

+    Here are two examples:

 
     SELECT *
     FROM t1 LEFT OUTER JOIN t2 ON (t1.col = t2.col);