fixes db_mysql broken quoting; refs c16ee37a71 (r44209990) [backport:1.4] (#16035)

(cherry picked from commit 2773efa034)
This commit is contained in:
Andreas Rumpf
2020-11-18 23:06:16 +01:00
committed by narimiran
parent 80c33b187d
commit 8e181cbd3f

View File

@@ -130,7 +130,6 @@ proc dbQuote*(s: string): string =
of '\r': result.add "\\r"
of '\x1a': result.add "\\Z"
of '"': result.add "\\\""
of '%': result.add "\\%"
of '\'': result.add "\\'"
of '\\': result.add "\\\\"
of '_': result.add "\\_"