Update FAQ.
authorBruce Momjian
Tue, 12 Feb 2002 17:18:10 +0000 (17:18 +0000)
committerBruce Momjian
Tue, 12 Feb 2002 17:18:10 +0000 (17:18 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index aa4a1f1ea6c56f3da506dd2811bdef1670f7ca3c..55c229725f08d53106488881fc1b82221225260e 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Tue Feb 12 12:14:52 EST 2002
+   Last updated: Tue Feb 12 12:18:09 EST 2002
    
    Current maintainer: Bruce Momjian ([email protected])
    
@@ -81,7 +81,7 @@
    4.15.3) Don't currval() and nextval() lead to a race condition with
    other users?
    4.15.4) Why aren't my sequence numbers reused on transaction abort?
-   Why are there gaps in the numbers of my sequence/SERIAL column?
+   Why are there gaps in the numbering of my sequence/SERIAL column?
    4.16) What is an OID? What is a TID?
    4.17) What is the meaning of some of the terms used in PostgreSQL?
    4.18) Why do I get the error "ERROR: Memory exhausted in
@@ -866,10 +866,10 @@ BYTEA           bytea           variable-length byte array (null-byte safe)
    by all users.
    
     4.15.4) Why aren't my sequence numbers reused on transaction abort? Why are
-    there gaps in the numbers of my sequence/SERIAL column?
+    there gaps in the numbering of my sequence/SERIAL column?
     
    To improve concurrency, sequence values are given out to running
-   transactions as needed and are now locked until the transaction
+   transactions as needed and are not locked until the transaction
    completes. This causes gaps in numbering from aborted transactions.
    
     4.16) What is an OID? What is a TID?
index 8b7add79e768a77e79a4bafc6d92d22e738cde5d..40ad62917a7f4b4e287b1866a70cbb33ec2a1b10 100644 (file)
@@ -14,7 +14,7 @@
   alink="#0000ff">
     

Frequently Asked Questions (FAQ) for PostgreSQL

 
-    

Last updated: Tue Feb 12 12:14:52 EST 2002

+    

Last updated: Tue Feb 12 12:18:09 EST 2002

 
     

Current maintainer: Bruce Momjian (

      4.15.3) Don't currval() and
     nextval() lead to a race condition with other users?
      4.15.4) Why aren't my sequence numbers reused
-     on transaction abort? Why are there gaps in the numbers of my
+     on transaction abort? Why are there gaps in the numbering of my
      sequence/SERIAL column?
      4.16) What is an OID? What is a
     TID?
@@ -1096,13 +1096,12 @@ BYTEA           bytea           variable-length byte array (null-byte safe)
     backend, not by all users.

 
     

4.15.4) Why aren't my sequence numbers reused

-    on transaction abort? Why are there gaps in the numbers of my
+    on transaction abort? Why are there gaps in the numbering of my
     sequence/SERIAL column?
 
     

To improve concurrency, sequence values are given out to running

-    transactions as needed and are now locked until the
-    transaction completes. This causes gaps in numbering from aborted
-    transactions.
+    transactions as needed and are not locked until the transaction
+    completes. This causes gaps in numbering from aborted transactions.
 
     

4.16) What is an OID? What is

     a TID?