From 567f9d054f60ef51f71b4962c12ebef4e100caf2 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Wed, 27 Feb 2002 01:47:31 +0000 Subject: [PATCH] Back-patch fix for followings: Fix bug in COPY FROM when DELIMITER is not in ASCII range. See pgsql-bugs/pgsql-hackers discussion "COPY FROM is not 8bit clean" around 2002/02/26 for more details -- Tatsuo Ishii --- src/backend/commands/copy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index f42b865687c..d49788b8e18 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.145 2002/02/12 21:25:41 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.145.2.1 2002/02/27 01:47:31 ishii Exp $ * *------------------------------------------------------------------------- */ @@ -1024,7 +1024,7 @@ static char * CopyReadAttribute(FILE *fp, bool *isnull, char *delim, int *newline, char *null_print) { int c; - int delimc = delim[0]; + int delimc = (unsigned char)delim[0]; #ifdef MULTIBYTE int mblen; -- 2.39.5