projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
056a664
)
Make clearer warning about using 'now' with DEFAULT:
author
Bruce Momjian
Fri, 11 Feb 2005 04:31:54 +0000
(
04:31
+0000)
committer
Bruce Momjian
Fri, 11 Feb 2005 04:31:54 +0000
(
04:31
+0000)
SELECT CURRENT_TIMESTAMP;
SELECT now();
SELECT TIMESTAMP 'now'; -- incorrect for use with DEFAULT
doc/src/sgml/func.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/func.sgml
b/doc/src/sgml/func.sgml
index 099f2c4ae9063f3015ded2f53eb2cf238d86d09d..8a862b0027c599b2ba007493328451cdc89f5288 100644
(file)
--- 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