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
REL7_2_STABLE
Tatsuo Ishii 24 years ago
parent 75c07d5b4d
commit 567f9d054f
  1. 4
      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;

Loading…
Cancel
Save