Replies: 2 comments
-
@tnrich — sorry for the delay! This should be possible using native queries. Something like this, maybe? CREATE OR REPLACE FUNCTION case_insensitive_in(text[], text)
RETURNS BOOLEAN AS $$
SELECT $2 ILIKE ANY ($1);
$$ LANGUAGE sql; A simpler approach may be to use |
Beta Was this translation helpful? Give feedback.
0 replies
-
Closing this due to inactivity. Please reach back out if you have more questions @tnrich. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Aka is there some way we can we do something like:
and have
be returned?
Beta Was this translation helpful? Give feedback.
All reactions