jinchengchenghh opened a new pull request, #8834: URL: https://github.com/apache/incubator-gluten/pull/8834
With storage partition join, suppose the left leaf partition is [1, 2], the right partition is [1, 2, 10], the number of partitions is not equal, use empty partition for those partition values that are not present. ``` index | left | right 0 | Seq(1) | Seq(1) 1 | Seq(2) | Seq(2) 2 | Seq() | Seq(10) ``` Relevant Spark PR: https://github.com/apache/spark/pull/35657 -- 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]
