You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,18 @@ Or install it yourself with:
54
54
55
55
$ gem install activerecord_where_assoc
56
56
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
+
57
69
## Development state
58
70
59
71
This gem is feature complete and production ready.<br>
0 commit comments