Prevent doubling of escapes when not in quote mode for CSV.
authorBruce Momjian <bruce@momjian.us>
Mon, 19 Apr 2004 21:58:02 +0000 (21:58 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 19 Apr 2004 21:58:02 +0000 (21:58 +0000)
src/backend/commands/copy.c

index abb153616aa8801f9c8513a787221fe840eadf1d..b532c158bcfd20eed7783a068e78274de5c13cbe 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.221 2004/04/19 17:22:30 momjian Exp $
+ *   $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.222 2004/04/19 21:58:02 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -2599,7 +2599,7 @@ CopyAttributeOutCSV(char *server_string, char *delim, char *quote,
 
    for (; (c = *string) != '\0'; string += mblen)
    {
-       if (c == quotec || c == escapec)
+       if (need_quote && (c == quotec || c == escapec))
            CopySendChar(escapec);
 
        CopySendChar(c);