aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-03-11 16:41:44 +0000
committerBruce Momjian <bruce@momjian.us>2002-03-11 16:41:44 +0000
commit0d2842468c74d214e78b435a254789a45cb93f86 (patch)
treec9f8ea83553cca681fbfa5506f82d03d937cc76e
parent80bbfe76d570f2c4066abc559b59493e64f9f09a (diff)
downloadpostgresql-0d2842468c74d214e78b435a254789a45cb93f86.tar.gz
postgresql-0d2842468c74d214e78b435a254789a45cb93f86.zip
Mention time() and interval() are also changed in 7.2.
-rw-r--r--HISTORY4
-rw-r--r--doc/src/sgml/release.sgml9
2 files changed, 7 insertions, 6 deletions
diff --git a/HISTORY b/HISTORY
index e9f5ff06744..12d26e1d955 100644
--- a/HISTORY
+++ b/HISTORY
@@ -74,8 +74,8 @@ Migration to version 7.2
* 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 timestamp(), time(), and inverval() functions are no longer
+ available. Instead of timestamp(), use timestamp 'string', 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.
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml
index 3801b8d1eab..849c6ba7dbf 100644
--- a/doc/src/sgml/release.sgml
+++ b/doc/src/sgml/release.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.119 2002/03/01 22:45:04 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.120 2002/03/11 16:41:44 momjian Exp $
-->
<appendix id="release">
@@ -183,9 +183,10 @@ Database and user-specific session defaults of run-time configurations variables
<listitem>
<para>
- The <literal>timestamp()</literal> function is no longer
- available. Use <literal>timestamp 'string'</literal> instead,
- or <literal>CAST</literal>.
+ The <literal>timestamp()</literal>, <literal>time()</literal>,
+ and <literal>interval()</literal> functions are no longer
+ available. Instead of <literal>timestamp()</literal>, use
+ <literal>timestamp 'string'</literal> or <literal>CAST</literal>.
</para>
</listitem>