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.
1 parent 37a4c4d commit 13a6ee6Copy full SHA for 13a6ee6
datafusion/physical-plan/src/joins/hash_join.rs
@@ -1120,7 +1120,6 @@ impl ExecutionPlan for HashJoinExec {
1120
bounds_accumulator: Arc::clone(&self.bounds_accumulator),
1121
dynamic_filter: enable_dynamic_filter_pushdown
1122
.then_some(Arc::clone(&self.dynamic_filter)),
1123
- partition_id: partition,
1124
}))
1125
}
1126
@@ -1620,8 +1619,6 @@ struct HashJoinStream {
1620
1619
bounds_accumulator: Arc<SharedBoundsAccumulator>,
1621
/// Dynamic filter for pushdown to probe side
1622
dynamic_filter: Option<Arc<DynamicFilterPhysicalExpr>>,
1623
- /// Partition ID for tracking in bounds accumulator
1624
- partition_id: usize,
1625
1626
1627
impl RecordBatchStream for HashJoinStream {
0 commit comments