From: Bruce Momjian Date: Fri, 11 Feb 2005 04:31:54 +0000 (+0000) Subject: Make clearer warning about using 'now' with DEFAULT: X-Git-Tag: REL8_1_0BETA1~1390 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=341251f20289a646a04cf3c29cb7017dd5d7d333;p=thirdparty%2Fpostgresql.git Make clearer warning about using 'now' with DEFAULT: SELECT CURRENT_TIMESTAMP; SELECT now(); SELECT TIMESTAMP 'now'; -- incorrect for use with DEFAULT --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 099f2c4ae90..8a862b0027c 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ @@ -5763,7 +5763,7 @@ SELECT timeofday(); SELECT CURRENT_TIMESTAMP; SELECT now(); -SELECT TIMESTAMP 'now'; +SELECT TIMESTAMP 'now'; -- incorrect for use with DEFAULT