jwdeitch commented on a change in pull request #874:
URL: https://github.com/apache/arrow-rs/pull/874#discussion_r745020749
##########
File path: arrow/src/compute/kernels/comparison.rs
##########
@@ -477,6 +477,122 @@ pub fn nlike_utf8_scalar<OffsetSize:
StringOffsetSizeTrait>(
Ok(BooleanArray::from(data))
}
+/// Perform SQL `left ILIKE right` operation on [`StringArray`] /
+/// [`LargeStringArray`].
+///
+/// See the documentation on [`like_utf8`] for more details.
+pub fn ilike_utf8<OffsetSize: StringOffsetSizeTrait>(
Review comment:
Hey Andrew! sorry for the delay, I've been trying to get the `not like`
functionality incorporated into this without relying on a negative look-ahead
in the regex expression (which I assume will be have negative performance
impact). Or I can otherwise add an additional parameter to `regex_like` that
will negate the match. I can get a change pushed today with your guidance :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]