diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2010-05-27 18:23:47 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2010-05-27 18:23:47 +0000 |
commit | 2175d4fa59ece12afc62320ae84cf5e59b0667de (patch) | |
tree | 10a6b4c44e4de89c5b512029e88bfe9890113c91 | |
parent | c82d931dd180965a9a0c06acc764404f91de8170 (diff) | |
download | postgresql-2175d4fa59ece12afc62320ae84cf5e59b0667de.tar.gz postgresql-2175d4fa59ece12afc62320ae84cf5e59b0667de.zip |
Small correction/clarification in discussion of Unicode literals
-rw-r--r-- | doc/src/sgml/syntax.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml index 7259a47bbf5..c9fa642345c 100644 --- a/doc/src/sgml/syntax.sgml +++ b/doc/src/sgml/syntax.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.143 2010/04/03 07:22:56 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.144 2010/05/27 18:23:47 petere Exp $ --> <chapter id="sql-syntax"> <title>SQL Syntax</title> @@ -240,7 +240,7 @@ U&"d!0061t!+000061" UESCAPE '!' the ASCII range (up to <literal>\007F</literal>) can be specified. Both the 4-digit and the 6-digit form can be used to specify UTF-16 surrogate pairs to compose characters with code points - larger than <literal>\FFFF</literal> (although the availability of + larger than U+FFFF (although the availability of the 6-digit form technically makes this unnecessary). </para> @@ -435,7 +435,7 @@ SELECT 'foo' 'bar'; code points in the ASCII range (up to <literal>\u007F</>) can be specified. Both the 4-digit and the 8-digit form can be used to specify UTF-16 surrogate pairs to compose characters with code - points larger than <literal>\FFFF</literal> (although the + points larger than U+FFFF (although the availability of the 8-digit form technically makes this unnecessary). </para> @@ -523,7 +523,7 @@ U&'d!0061t!+000061' UESCAPE '!' specified. Both the 4-digit and the 6-digit form can be used to specify UTF-16 surrogate pairs to compose characters with code points - larger than <literal>\FFFF</literal> (although the availability + larger than U+FFFF (although the availability of the 6-digit form technically makes this unnecessary). </para> |