-
I have some data with numeric values like, for instance, age etc. And I want to be able to filter such values using operators as LIKE, IN etc. Is it possible? |
Beta Was this translation helpful? Give feedback.
Answered by
aklish
Mar 12, 2021
Replies: 1 comment 4 replies
-
Looking at the code, Elide allows the IN operator to be used with numeric values (not INI - or case insensitive IN). For INFIX, PREFIX, and POSTFIX, Elide will try to coerce the type to a String. I don't see any test cases for this though. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
aklish
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looking at the code, Elide allows the IN operator to be used with numeric values (not INI - or case insensitive IN). For INFIX, PREFIX, and POSTFIX, Elide will try to coerce the type to a String. I don't see any test cases for this though.