Commit 4187adc6 authored by Joe Conway's avatar Joe Conway

Minor clarification of documentation regarding trailing whitespace.

parent da8325fa
<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.37 2004/08/08 05:01:51 joe Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.38 2004/08/08 05:55:55 joe Exp $ -->
<sect1 id="arrays"> <sect1 id="arrays">
<title>Arrays</title> <title>Arrays</title>
...@@ -585,10 +585,10 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2 ...@@ -585,10 +585,10 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2
quotes around any individual array element. You <emphasis>must</> do so quotes around any individual array element. You <emphasis>must</> do so
if the element value would otherwise confuse the array-value parser. if the element value would otherwise confuse the array-value parser.
For example, elements containing curly braces, commas (or whatever the For example, elements containing curly braces, commas (or whatever the
delimiter character is), double quotes, backslashes, or leading white delimiter character is), double quotes, backslashes, or leading or trailing
space must be double-quoted. To put a double quote or backslash in a whitespace must be double-quoted. To put a double quote or backslash in a
quoted array element value, precede it with a backslash. Alternatively, quoted array element value, precede it with a backslash. Alternatively, you
you can use backslash-escaping to protect all data characters that would can use backslash-escaping to protect all data characters that would
otherwise be taken as array syntax. otherwise be taken as array syntax.
</para> </para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment