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
{{ message }}
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
Hey,
I just tried making
contain
work on non-string types.Patching
MetaSearch::DEFAULT_WHERES
enabled me to write the following:Order.search(id_like: 12)
However, executing the query leads to SQL like the following:
SELECT * FROM orders where id like 0
.Some investigation turned out that MetaSearch correctly passes "%12%" to AREL, which seems to be the reason for my problem.
Do you have any idea on how to fix this, @ernie ? I'd like AREL not to change my "%12%" to 0.
Suggestions are welcome.
Thank you for your hard work!
The text was updated successfully, but these errors were encountered: