summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-12-27 00:04:44 +0000
committerBruce Momjian <bruce@momjian.us>2001-12-27 00:04:44 +0000
commit498d0087eb50f39372c6f2cfe5c1014efc2cdd47 (patch)
treed06edcde606e7341e1169a7c05eb83786c6e0f15 /HISTORY
parent0181d9ffaaee4a360d3104dabc6253f08ea4b036 (diff)
downloadpostgresql-498d0087eb50f39372c6f2cfe5c1014efc2cdd47.tar.gz
Update for new timestamp behavior.
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY6
1 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 3796d33138..b32fe01bb8 100644
--- a/HISTORY
+++ b/HISTORY
@@ -69,9 +69,12 @@ Migration to version 7.2
* The function "octet_length()" now returns the uncompressed data
length.
- * The date/time value current is no longer available. You will need to
+ * The date/time value "current" is no longer available. You will need to
rewrite your applications.
+ * The timestamp() function is no longer available. Use timestamp
+ "string" instead, or CAST.
+
The SELECT ... LIMIT #,# syntax will be removed in the next release. You
should change your queries to use separate LIMIT and OFFSET clauses, e.g.
LIMIT 10 OFFSET 20.
@@ -241,6 +244,7 @@ Changes
Fix path_inter, path_distance, path_length, dist_ppath to handle closed paths (Curtis Barrett, Tom)
octet_length(text) now returns non-compressed length (Tatsuo, Bruce)
Handle "July" full name in date/time literals (Greg Sabino Mullane)
+ datatype(const,...) function calls now evaluated earlier
----------------------------------------------------------------------