anoopj opened a new pull request, #17659: URL: https://github.com/apache/iceberg/pull/17659
Evaluating an IN predicate against a file's column bounds ran the candidate literals through two chained stream().filter().collect() pipelines, allocating two Stream objects, two capturing lambdas, and an intermediate list per evaluation. Replace them with a single pass that short-circuits on the first literal within the file's bounds. There is no behavior change and existing tests cover the change. -- 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]
