1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Add mention that "today" doesn't work as column default anymore.

This commit is contained in:
Bruce Momjian
2003-10-22 05:09:12 +00:00
parent 7533e455f0
commit 4377a9afc3
2 changed files with 11 additions and 5 deletions

View File

@ -82,8 +82,12 @@
DateStyle
* The oidrand(), oidsrand(), and userfntest() functions have been
removed.
* 'now' will no longer work as a column default; now() should be
used instead
* 'now' will no longer work as a column default; now() or
CURRENT_TIMESTAMP should be used instead
* 'today' will no longer work as a column default; CURRENT_DATE
should be used instead
* Dollar sign ($) is no longer allowed in operator names
* Dollar sign ($) can be a non-first character in identifiers
_________________________________________________________________
Changes