|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.37 2004/08/08 05:01:51 joe Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/array.sgml,v 1.38 2004/08/08 05:55:55 joe Exp $ --> |
2 | 2 |
|
3 | 3 | <sect1 id="arrays">
|
4 | 4 | <title>Arrays</title>
|
@@ -585,10 +585,10 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2
|
585 | 585 | quotes around any individual array element. You <emphasis>must</> do so
|
586 | 586 | if the element value would otherwise confuse the array-value parser.
|
587 | 587 | For example, elements containing curly braces, commas (or whatever the
|
588 |
| - delimiter character is), double quotes, backslashes, or leadingwhite |
589 |
| -space must be double-quoted. To put a double quote or backslash in a |
590 |
| - quoted array element value, precede it with a backslash. Alternatively, |
591 |
| -youcan use backslash-escaping to protect all data characters that would |
| 588 | + delimiter character is), double quotes, backslashes, or leadingor trailing |
| 589 | +whitespace must be double-quoted. To put a double quote or backslash in a |
| 590 | + quoted array element value, precede it with a backslash. Alternatively, you |
| 591 | + can use backslash-escaping to protect all data characters that would |
592 | 592 | otherwise be taken as array syntax.
|
593 | 593 | </para>
|
594 | 594 |
|
|