We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739425d commit 4029a5aCopy full SHA for 4029a5a
src/backend/commands/copy.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.280 2007/04/16 01:14:55 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.281 2007/04/18 00:38:57 momjian Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -857,7 +857,7 @@ DoCopy(const CopyStmt *stmt, const char *queryString)
857
if (strlen(cstate->delim) != 1)
858
ereport(ERROR,
859
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
860
- errmsg("COPY delimiter must be a single character")));
+ errmsg("COPY delimiter must be a single ASCII character")));
861
862
/* Disallow end-of-line characters */
863
if (strchr(cstate->delim, '\r') != NULL ||
0 commit comments