Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement sort-merge join #2242

Merged
merged 10 commits into from
Apr 22, 2022
1 change: 1 addition & 0 deletions datafusion/core/src/physical_plan/mod.rs
Original file line number Diff line number Diff line change
@@ -566,6 +566,7 @@ pub mod metrics;
pub mod planner;
pub mod projection;
pub mod repartition;
pub mod sort_merge_join;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As a follow on PR it might be nice to move all the join code into a joins directory -- like

datafusion/core/src/physical_plan/joins/sort_merge.rs
datafusion/core/src/physical_plan/joins/hash.rs
datafusion/core/src/physical_plan/joins/cross.rs

etc

pub mod sorts;
pub mod stream;
pub mod type_coercion;
Loading