dbms: improvement [#CONV-2546].

This commit is contained in:
Alexey Milovidov 2011-06-15 18:42:51 +00:00
parent b33de091f0
commit 236ee3303e

View File

@ -37,6 +37,10 @@ void writeEscapedString(const String & s, WriteBuffer & buf)
writeChar('\\', buf);
writeChar('\'', buf);
break;
case '"':
writeChar('\\', buf);
writeChar('"', buf);
break;
case '\\':
writeChar('\\', buf);
writeChar('\\', buf);