walterddr commented on issue #11651:
URL: https://github.com/apache/pinot/issues/11651#issuecomment-1740146801

   here is a proposal for creating lookup join support in the v2 engine: 
https://docs.google.com/document/d/1cyFrW21MlcbHEEfl46paKRs6v6qHzwOZbIsnFL7UVnw/edit#heading=h.xdbe7h7na0kx
   
   TL;DR the syntax could look as the following
   ```
   SELECT /*+ joinOptions(join_strategy = ‘lookup’) */
     b.playerName, b.teamID, d.teamName
   FROM baseballStats as b LEFT JOIN dimBaseballTeams as d 
     ON b.teamID = d.teamID
   ```


-- 
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: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to