]> granicus.if.org Git - postgresql/commitdiff
Update FAQ.
authorBruce Momjian <bruce@momjian.us>
Mon, 12 Nov 2001 07:38:57 +0000 (07:38 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 12 Nov 2001 07:38:57 +0000 (07:38 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index 02037100457a4a45e20b1122568c132c7468e183..d1b9900e062e2757686e4ef8239b10b22c7a8161 100644 (file)
--- 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?
     
index efb5724282ed627bb3c18cf2a033ccc1633de0c7..e34794f866ac5075574c22180ce0620f57fe10d5 100644 (file)
@@ -12,7 +12,7 @@
   alink="#0000FF">
     <H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
 
-    <P>Last updated: Sun Oct 14 19:27:20 EDT 2001</P>
+    <P>Last updated: Mon Nov 12 02:38:47 EST 2001</P>
 
     <P>Current maintainer: Bruce Momjian (<A href=
     "mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
@@ -1202,9 +1202,9 @@ BYTEA           bytea           variable-length byte array (null-safe)
     default to the current time?<BR>
     </H4>
 
-    <P>Use <I>now()</I>:</P>
+    <P>Use <I>CURRENT_TIMESTAMP</I>:</P>
 <PRE>
-<CODE>CREATE TABLE test (x int, modtime timestamp DEFAULT now() );
+<CODE>CREATE TABLE test (x int, modtime timestamp DEFAULT CURRENT_TIMESTAMP );
 </CODE>
 </PRE>