Skip to content

Commit

Permalink
fixes db_mysql broken quoting; refs c16ee37#r44209990 [backport:1.4] (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq authored Nov 18, 2020
1 parent b9eb91c commit 2773efa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/impure/db_mysql.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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 "\\_"
Expand Down

0 comments on commit 2773efa

Please sign in to comment.