diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-04-18 02:29:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-04-18 02:29:39 +0000 |
commit | 65c531df0458b7fa8e8cce84f9d5f45fa2b1d166 (patch) | |
tree | e10c8c947b467d210e85c3918ad54cae5e4dc7fa | |
parent | 4e9344345585d993797cce6292ff87e5735aad85 (diff) |
Update docs/error message for CSV quote/escape --- must be ASCII.
Backpatch doc change to 8.2.X.
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 2770cde3bb9..101c1c29b49 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.77.2.1 2007/04/18 00:18:31 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.77.2.2 2007/04/18 02:29:39 momjian Exp $ PostgreSQL documentation --> @@ -225,7 +225,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c <term><replaceable class="parameter">quote</replaceable></term> <listitem> <para> - Specifies the quotation character in <literal>CSV</> mode. + Specifies the ASCII quotation character in <literal>CSV</> mode. The default is double-quote. </para> </listitem> @@ -235,7 +235,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c <term><replaceable class="parameter">escape</replaceable></term> <listitem> <para> - Specifies the character that should appear before a + Specifies the ASCII character that should appear before a <literal>QUOTE</> data character value in <literal>CSV</> mode. The default is the <literal>QUOTE</> value (usually double-quote). </para> |