Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafasrepo committed Feb 21, 2024
1 parent 01eaf45 commit 93f5282
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/hash_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ impl HashJoinExec {

// Determine execution mode by checking whether this join is pipeline
// breaking. This happens when the left side is unbounded, or the right
// side is unbounded with `Right`, `Full` or `RightAnti` join types.
// side is unbounded with `Left`, `Full`, `LeftAnti` or `LeftSemi` join types.
let pipeline_breaking = left.execution_mode().is_unbounded()
|| (right.execution_mode().is_unbounded()
&& matches!(
Expand Down
3 changes: 1 addition & 2 deletions datafusion/physical-plan/src/joins/nested_loop_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ impl NestedLoopJoinExec {
&[],
);

// Get output partitioning, which is determined by the rule of
// `required_input_distribution`:
// Get output partitioning,
let output_partitioning = if self.join_type == JoinType::Full {
self.left.output_partitioning().clone()
} else {
Expand Down

0 comments on commit 93f5282

Please sign in to comment.