alamb commented on a change in pull request #874: URL: https://github.com/apache/arrow-rs/pull/874#discussion_r745018423
########## 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: Hi @jwdeitch -- I am planning to make a `6.2.0` release candidate later this week (Thursday or Friday) and I think this would be a great PR to get in by then. Do you plan to do the refactoring as part of this PR, or shall I merge this one and we can refactor as a follow on? -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org