File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11<!--
2- $PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.79 2007/04/18 00:17:56 momjian Exp $
2+ $PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.80 2007/04/18 02:28:22 momjian Exp $
33PostgreSQL documentation
44-->
55
@@ -225,7 +225,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c
225225 <term><replaceable class="parameter">quote</replaceable></term>
226226 <listitem>
227227 <para>
228- Specifies the quotation character in <literal>CSV</> mode.
228+ Specifies the ASCII quotation character in <literal>CSV</> mode.
229229 The default is double-quote.
230230 </para>
231231 </listitem>
@@ -235,7 +235,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c
235235 <term><replaceable class="parameter">escape</replaceable></term>
236236 <listitem>
237237 <para>
238- Specifies the character that should appear before a
238+ Specifies the ASCII character that should appear before a
239239 <literal>QUOTE</> data character value in <literal>CSV</> mode.
240240 The default is the <literal>QUOTE</> value (usually double-quote).
241241 </para>
Original file line number Diff line number Diff line change 88 *
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.281 2007/04/18 00:38:57 momjian Exp $
11+ * $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.282 2007/04/18 02:28:22 momjian Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
@@ -893,7 +893,7 @@ DoCopy(const CopyStmt *stmt, const char *queryString)
893893 if (cstate -> csv_mode && strlen (cstate -> quote ) != 1 )
894894 ereport (ERROR ,
895895 (errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
896- errmsg ("COPY quote must be a single character" )));
896+ errmsg ("COPY quote must be a single ASCII character" )));
897897
898898 /* Check escape */
899899 if (!cstate -> csv_mode && cstate -> escape != NULL )
@@ -904,7 +904,7 @@ DoCopy(const CopyStmt *stmt, const char *queryString)
904904 if (cstate -> csv_mode && strlen (cstate -> escape ) != 1 )
905905 ereport (ERROR ,
906906 (errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
907- errmsg ("COPY escape must be a single character" )));
907+ errmsg ("COPY escape must be a single ASCII character" )));
908908
909909 /* Check force_quote */
910910 if (!cstate -> csv_mode && force_quote != NIL )
You can’t perform that action at this time.
0 commit comments