aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Conway <mail@joeconway.com>2004-08-08 05:46:40 +0000
committerJoe Conway <mail@joeconway.com>2004-08-08 05:46:40 +0000
commitda8325fa5cb6a896ad48d90c25643f41b4ec743c (patch)
tree83dd8fb3523996752884693a001ad4b595efa7c8
parent8120ff636b63633f1a322c044877028d615d5d50 (diff)
downloadpostgresql-da8325fa5cb6a896ad48d90c25643f41b4ec743c.tar.gz
postgresql-da8325fa5cb6a896ad48d90c25643f41b4ec743c.zip
Updated release notes for recent array syntax changes.
-rw-r--r--doc/src/sgml/release.sgml33
1 files changed, 32 insertions, 1 deletions
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml
index 1bd20134dd2..ab99f88c1dd 100644
--- a/doc/src/sgml/release.sgml
+++ b/doc/src/sgml/release.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.278 2004/08/06 23:33:48 tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.279 2004/08/08 05:46:40 joe Exp $
-->
<appendix id="release">
@@ -311,6 +311,16 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.278 2004/08/06 23:33:48 tgl Exp
removed.
</para>
</listitem>
+
+ <listitem>
+ <para>
+ Syntax checking of array input processing has been tighened up
+ considerably. Junk that was previously allowed in odd places with
+ odd results now causes an ERROR. Also changed behavior with respect
+ to whitespace; trailing whitespace is now ignored as well as leading
+ whitespace (which has always been ignored).
+ </para>
+ </listitem>
</itemizedlist>
</para>
</sect2>
@@ -1115,6 +1125,27 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.278 2004/08/06 23:33:48 tgl Exp
</listitem>
<listitem>
+ <para>
+ Syntax checking of array input processing considerably tighened up (Joe)
+ </para>
+ <para>
+ Junk that was previously allowed in odd places with odd results now
+ causes an ERROR.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Array element trailing whitespace is now ignored (Joe)
+ </para>
+ <para>
+ Formerly leading whitespace was ignored, but trailing whitespace
+ between an element and the delimiter or right brace was significant.
+ Now trailing whitespace is also ignored.
+ </para>
+ </listitem>
+
+ <listitem>
<para>
Emit array literals with explicit array bounds when lower bound is not one
(Joe)