Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dbcopy: do not excape double quotes
  • Loading branch information
franku committed Jan 31, 2020
1 parent 4179e8d commit 16078b6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions core/src/dird/dbcopy/column_description.cc
Expand Up @@ -80,11 +80,6 @@ static void string_conversion_postgresql(FieldData& fd)
*n++ = 0;
o++;
break;
case '\"':
*n++ = '\\';
*n++ = '\"';
o++;
break;
default:
*n++ = *o++;
break;
Expand Down

0 comments on commit 16078b6

Please sign in to comment.