Replies: 1 comment
-
@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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Aka is there some way we can we do something like:
and have
be returned?
Beta Was this translation helpful? Give feedback.
All reactions