diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-04-18 02:28:22 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-04-18 02:28:22 +0000 |
commit | c2284489106f6d2d0a9a2d2b84fe0baadab97ed4 (patch) | |
tree | 37d823f0d203d040debd64230411d11ed4b9b869 /doc/src | |
parent | 4029a5af9bb2591b76f9c1b3b046ab07aa4e2074 (diff) |
Update docs/error message for CSV quote/escape --- must be ASCII.
Backpatch doc change to 8.2.X.
Diffstat (limited to 'doc/src')
-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 0140ea28aeb..703951de803 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.79 2007/04/18 00:17:56 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.80 2007/04/18 02:28:22 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> |