mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
fixes db_mysql broken quoting; refs c16ee37a71 (r44209990) [backport:1.4] (#16035)
(cherry picked from commit 2773efa034)
This commit is contained in:
@@ -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 "\\_"
|
||||
|
||||
Reference in New Issue
Block a user