-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix SQL calls with wrong quotation for string literals.
Many SQL statements were written as: SELECT ... FROM ... WHERE ... IN ("x","y",...) and they should have been: SELECT ... FROM ... WHERE ... IN ('x','y',...) Sqlite used to be fine with that, but the new version is more strict about it. So we needed to update a ton of wrongly quoted strings. See also https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted Thanks Ana for spotting this!
- Loading branch information
Showing
4 changed files
with
72 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.