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
I found 2 incompatibilities with activerecord 4.1.0.beta1.
First, quote_value requires the second argument. rails/rails@31a43eb
I think it can be fixed easily by passing nil explicitly.
Second, the SQL statement generated from count changes. rails/rails@da9b5d4
In acts-as-taggable-on, tags.count or tags.empty? performs an invalid query.
Using tags.count(:all) may solve this issue.
The text was updated successfully, but these errors were encountered:
I found 2 incompatibilities with activerecord 4.1.0.beta1.
First,
quote_value
requires the second argument.rails/rails@31a43eb
I think it can be fixed easily by passing
nil
explicitly.Second, the SQL statement generated from
count
changes.rails/rails@da9b5d4
In acts-as-taggable-on,
tags.count
ortags.empty?
performs an invalid query.Using
tags.count(:all)
may solve this issue.The text was updated successfully, but these errors were encountered: