1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-16 17:07:43 +03:00

Update docs/error message for CSV quote/escape --- must be ASCII.

Backpatch doc change to 8.2.X.
This commit is contained in:
Bruce Momjian
2007-04-18 02:29:39 +00:00
parent 4e93443455
commit 65c531df04

View File

@@ -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 PostgreSQL documentation
--> -->
@@ -225,7 +225,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c
<term><replaceable class="parameter">quote</replaceable></term> <term><replaceable class="parameter">quote</replaceable></term>
<listitem> <listitem>
<para> <para>
Specifies the quotation character in <literal>CSV</> mode. Specifies the ASCII quotation character in <literal>CSV</> mode.
The default is double-quote. The default is double-quote.
</para> </para>
</listitem> </listitem>
@@ -235,7 +235,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c
<term><replaceable class="parameter">escape</replaceable></term> <term><replaceable class="parameter">escape</replaceable></term>
<listitem> <listitem>
<para> <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. <literal>QUOTE</> data character value in <literal>CSV</> mode.
The default is the <literal>QUOTE</> value (usually double-quote). The default is the <literal>QUOTE</> value (usually double-quote).
</para> </para>