rubenada opened a new pull request, #6495: URL: https://github.com/apache/hive/pull/6495
### What changes were proposed in this pull request? In RexNodeConverter, convert IN to SEARCH operator. ### Why are the changes needed? Doing an early conversion from IN to SEARCH (instead of OR) in RexNodeConverter seems beneficial for enabling further simplifications and it could possibly reduce compilation latency since we would avoid the intermediate conversion to OR when that is not necessary. In a nutshell instead of doing IN -> OR -> SEARCH we could do IN -> SEARCH and we could possibly exploit the RexBuilder.makeIn method. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? tbd -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
