aboutsummaryrefslogtreecommitdiff
path: root/doc/FAQ
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-11-12 07:38:57 +0000
committerBruce Momjian <bruce@momjian.us>2001-11-12 07:38:57 +0000
commit905109f24a49caed336ffe15f8191be440c42305 (patch)
treee38b3d1790b1ad8ed094a9073b96c253d9f4b006 /doc/FAQ
parent0954ea174aa4896fc103e6ead94ffb4d680751dd (diff)
downloadpostgresql-905109f24a49caed336ffe15f8191be440c42305.tar.gz
postgresql-905109f24a49caed336ffe15f8191be440c42305.zip
Update FAQ.
Diffstat (limited to 'doc/FAQ')
-rw-r--r--doc/FAQ6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/FAQ b/doc/FAQ
index 02037100457..d1b9900e062 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
Frequently Asked Questions (FAQ) for PostgreSQL
- Last updated: Sun Oct 14 19:27:20 EDT 2001
+ Last updated: Mon Nov 12 02:38:47 EST 2001
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -938,8 +938,8 @@ BYTEA bytea variable-length byte array (null-safe)
4.22) How do I create a column that will default to the current time?
- Use now():
-CREATE TABLE test (x int, modtime timestamp DEFAULT now() );
+ Use CURRENT_TIMESTAMP:
+CREATE TABLE test (x int, modtime timestamp DEFAULT CURRENT_TIMESTAMP );
4.23) Why are my subqueries using IN so slow?