Skip to content

Commit 8f36fb7

Browse files
committed
Mention SQLite issue
1 parent 106f130 commit 8f36fb7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,18 @@ Or install it yourself with:
5454

5555
$ gem install activerecord_where_assoc
5656

57+
## Sqlite issue
58+
59+
If used with SQLite, not that there is a problem related to nested EXISTS in SQLite 3.51.0 (contained in the [sqlite3 gem version 2.8.0](https://rubygems.org/gems/sqlite3/versions/2.8.0)). It is recommended to avoid the problematic version with:
60+
61+
```ruby
62+
gem 'sqlite3', '!= 2.8.0'
63+
64+
# Of you want another version pattern, you can have multiple ones.
65+
# The chosen version must match all conditions. ex:
66+
gem 'sqlite3', '>= 2.2.0', '!= 2.8.0'
67+
```
68+
5769
## Development state
5870

5971
This gem is feature complete and production ready.<br>

0 commit comments

Comments
 (0)