From 341251f20289a646a04cf3c29cb7017dd5d7d333 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 11 Feb 2005 04:31:54 +0000 Subject: [PATCH] Make clearer warning about using 'now' with DEFAULT: SELECT CURRENT_TIMESTAMP; SELECT now(); SELECT TIMESTAMP 'now'; -- incorrect for use with DEFAULT --- doc/src/sgml/func.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5