aboutsummaryrefslogtreecommitdiff
path: root/doc/FAQ
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-02-12 17:18:10 +0000
committerBruce Momjian <bruce@momjian.us>2002-02-12 17:18:10 +0000
commitc16ef167df36a6364a981e1a9f61a8ab8003fe94 (patch)
tree7abcc33e80a9212b71721b1d06190c3a2b9ccaf1 /doc/FAQ
parentd39a369912faad9010cc5f3000c110219d2d2f69 (diff)
downloadpostgresql-c16ef167df36a6364a981e1a9f61a8ab8003fe94.tar.gz
postgresql-c16ef167df36a6364a981e1a9f61a8ab8003fe94.zip
Update FAQ.
Diffstat (limited to 'doc/FAQ')
-rw-r--r--doc/FAQ8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/FAQ b/doc/FAQ
index aa4a1f1ea6c..55c229725f0 100644
--- 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 (pgman@candle.pha.pa.us)
@@ -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?