Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
79abc3b0
Commit
79abc3b0
authored
Aug 30, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add explicit note that empty-string array element values now have to
be written with quotes. Minor copy-editing too.
parent
50742aed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
11 deletions
+27
-11
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+27
-11
No files found.
doc/src/sgml/release.sgml
View file @
79abc3b0
<!--
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.29
2 2004/08/27 02:09:18 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.29
3 2004/08/30 00:33:52 tgl
Exp $
-->
<appendix id="release">
...
...
@@ -327,11 +327,13 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.292 2004/08/27 02:09:18 momjian
<listitem>
<para>
Syntax checking of array input
processing has been tigh
ened up
Syntax checking of array input
values has been tight
ened up
considerably. Junk that was previously allowed in odd places with
odd results now causes an ERROR. Also changed behavior with respect
to whitespace surrounding array elements; trailing whitespace is now
ignored as well as leading whitespace (which has always been ignored).
odd results now causes an ERROR. Empty-string element values must
now be written as <literal>""</>, rather than writing nothing.
Also changed behavior with respect to whitespace surrounding array
elements: trailing whitespace is now ignored, for symmetry with leading
whitespace (which has always been ignored).
</para>
</listitem>
</itemizedlist>
...
...
@@ -1186,7 +1188,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.292 2004/08/27 02:09:18 momjian
<listitem>
<para>
Reject non-rectangular array
literal
s as erroneous (Joe)
Reject non-rectangular array
value
s as erroneous (Joe)
</para>
<para>
Formerly, <literal>array_in</literal> would silently build a
...
...
@@ -1196,11 +1198,25 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.292 2004/08/27 02:09:18 momjian
<listitem>
<para>
Syntax checking of array input
processing considerably tigh
ened up (Joe)
Syntax checking of array input
values considerably tight
ened up (Joe)
</para>
<para>
Junk that was previously allowed in odd places with odd results now
causes an ERROR.
causes an ERROR: for example, non-whitespace after the closing
right brace.
</para>
</listitem>
<listitem>
<para>
Empty-string array element values must now be written as
<literal>""</>, rather than writing nothing (Joe)
</para>
<para>
Formerly, both ways of writing an empty-string element value were
allowed, but now a quoted empty string is required. The case where
nothing at all appears will probably be taken over to mean a NULL
element value in some future release.
</para>
</listitem>
...
...
@@ -1210,14 +1226,14 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.292 2004/08/27 02:09:18 momjian
</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.
between an element
value and the delimiter or right brace was
significant.
Now trailing whitespace is also ignored.
</para>
</listitem>
<listitem>
<para>
Emit array
literal
s with explicit array bounds when lower bound is not one
Emit array
value
s with explicit array bounds when lower bound is not one
(Joe)
</para>
</listitem>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment