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
…16035)

(cherry picked from commit 2773efa)
  • Loading branch information
Araq authored and narimiran committed Nov 19, 2020
1 parent 80c33b1 commit 8e181cb
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 8e181cb

Please sign in to comment.