-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support the :disable_dqs Database option in the sqlite adapter to dis…
…able treating double quoted values as strings As described by the SQLite documentation, treating double quoted values as strings instead of identifiers is a misfeature. Unfortunately, the sqlite3 gem implements this using a :strict option, which is poorly named, as you would think it would have something to do with STRICT tables and it does not. Considering SQLite already supported STRICT for tables before the sqlite3 gem added support for the :strict option, I'm not sure why the option name was selected. Use :disable_dqs as the name of this option in Sequel, following the SQLite naming of the config options. This currently does not default to true for backwards compatibility, but I expect to change that in Sequel 6.
- Loading branch information
1 parent
fe99976
commit 8e5a8a9
Showing
4 changed files
with
16 additions
and
0 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
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