JayjeetAtGithub commented on issue #7342: URL: https://github.com/apache/arrow-datafusion/issues/7342#issuecomment-1689266808
I looked into this issue a little bit. Looks like there needs to be changes in `arrow-string` which is basically a part of `arrow-rs`. Specifically, I found out that there is [no support for `like` operation for binary operands](https://github.com/apache/arrow-datafusion/blob/ae4b52a7397bd7f613ea3782a84cc27245d0d57d/datafusion/physical-expr/src/expressions/like.rs#L23-L28) in `arrow-datafusion`. It only exists for `utf8` operands. Support for the `like` operation in `utf8` stems from [this](https://github.com/apache/arrow-rs/blob/90449ffb2ea6ceef43ce8fc97084b3373975f357/arrow-string/src/like.rs#L337) code in `arrow-string`. We basically need to add a binary version of this function in `arrow-rs`. Does that sound correct ? -- 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]
