Jackie-Jiang opened a new pull request, #14797: URL: https://github.com/apache/pinot/pull/14797
Add support for `BROADCAST` join strategy, where left table remains on the local server, and right table is broadcasted to the left table to perform the join. E.g. ``` SELECT /*+ joinOptions(join_strategy = 'broadcast') */ a.col1, b.col2 FROM a JOIN b ON a.col1 = b.col1 WHERE a.col2 = 'foo' AND b.col2 = 'bar' ``` Related to #14518 -- 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]
