From: Joe Conway Date: Sun, 8 Aug 2004 05:55:55 +0000 (+0000) Subject: Minor clarification of documentation regarding trailing whitespace. X-Git-Tag: REL8_0_0BETA1~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4187adc63117d70b2117ee61535eff64687836ba;p=postgresql Minor clarification of documentation regarding trailing whitespace. --- diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index e5ca426158..7376034577 100644 --- a/doc/src/sgml/array.sgml +++ b/doc/src/sgml/array.sgml @@ -1,4 +1,4 @@ - + Arrays @@ -585,10 +585,10 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2 quotes around any individual array element. You must do so if the element value would otherwise confuse the array-value parser. For example, elements containing curly braces, commas (or whatever the - delimiter character is), double quotes, backslashes, or leading white - space must be double-quoted. To put a double quote or backslash in a - quoted array element value, precede it with a backslash. Alternatively, - you can use backslash-escaping to protect all data characters that would + delimiter character is), double quotes, backslashes, or leading or trailing + whitespace must be double-quoted. To put a double quote or backslash in a + quoted array element value, precede it with a backslash. Alternatively, you + can use backslash-escaping to protect all data characters that would otherwise be taken as array syntax.