forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize cross joins for single record build side (facebookincubator#…
…10690) Summary: Pull Request resolved: facebookincubator#10690 Turns out that having a single record on the build side is common as users often cross-join relations with literals. Cross joins in Velox are implemented using Nested Loop Join (NLJ). Adding an optimization for this case where the single build record gets wrapped with entire probe batches, so that probe can be processed one batch at a time. Reviewed By: Yuhta Differential Revision: D60967489 fbshipit-source-id: 49cf39e73b7d2e87201dbb34b8461e8e7c6ae069
- Loading branch information
1 parent
172fef2
commit c0f0a31
Showing
2 changed files
with
83 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters