-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for ILIKE
#321
Comments
@raimohanska just did some refactoring and released v0.14.4 and v0.15.0-M3, will continue to implement this. |
@raimohanska implemented, can you help check? |
I tried but unfortunately I'm unable to get this revision using jitpack-io to my Maven project that uses Scala 2.11... |
It's not released yet. You need build it on your local. |
I upgraded to scala 2.12 and can currently almost compile my project. The only remaining issue is: While trying to update to the newest version, I run into an issue with bind.any: previously I was able to do val things: List[JValue] = ... ; things.bind.any and use this in a query. Now I get "value bind is not a member of List[org.json4s.JValue]". Any idea what could have happened? Having fixed this, I could move to working on ILIKE... |
To be more exact, with v0.15.0-M3 (or later), these three compile:
While these two don't
The error message is |
Here's the changes that I made to support scala v2.12, maybe you can check and adjust if necessary. In summary, we need 1) explicitly declare the type when overriding; 2) declare a trait then implement its companion object by |
Thanks a ton! My project finally compiles. The best xmax present I got this year :) |
Pls add a Donate button on your project page, I owe you a beer. |
I now use |
Glad to hear that! You're welcome! ;-) |
Would be nice to have
ILIKE
in addition to regularLIKE
, for case-insensitive like-queries.The text was updated successfully, but these errors were encountered: