We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
target_partitions = 1
1 parent e3eb4cf commit 8e60e17Copy full SHA for 8e60e17
datafusion/core/src/physical_plan/planner.rs
@@ -923,7 +923,8 @@ impl DefaultPhysicalPlanner {
923
})
924
.collect::<Result<join_utils::JoinOn>>()?;
925
926
- if session_state.config.target_partitions > 1
+ if (session_state.config.target_partitions > 1
927
+ || physical_right.output_partitioning().partition_count() > 1)
928
&& session_state.config.repartition_joins
929
{
930
let (left_expr, right_expr) = join_on
0 commit comments