From 52b9076499cffb2591da51ba66625f42c58b2acb 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index 9508b307f1..d76e5b6b63 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -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