Replies: 1 comment 3 replies
-
That's essentially a duplicate of #3360. The short version is that nobody cared enough for this functionality to contribute a fix. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to implement a basic text search SQL query with
ILIKE ALL
(see example below).This is possible with the diesel DSL thanks to the
ilike
and theall
expressions:The problem is that
all
was deprecated since version 2.0.0. The documentation suggests to usene_all
instead, which is not the right fit for the use-case above.Beta Was this translation helpful? Give feedback.
All reactions