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 fcca244 commit 51b0badCopy full SHA for 51b0bad
datafusion/physical-plan/src/joins/hash_join/exec.rs
@@ -1136,15 +1136,15 @@ impl ExecutionPlan for HashJoinExec {
1136
1137
fn handle_child_pushdown_result(
1138
&self,
1139
- _phase: FilterPushdownPhase,
+ phase: FilterPushdownPhase,
1140
child_pushdown_result: ChildPushdownResult,
1141
- _config: &ConfigOptions,
+ config: &ConfigOptions,
1142
) -> Result<FilterPushdownPropagation<Arc<dyn ExecutionPlan>>> {
1143
let df_side = self.join_type.dynamic_filter_side();
1144
self.handle_child_pushdown_result_with_side(
1145
- _phase,
+ phase,
1146
child_pushdown_result,
1147
- _config,
+ config,
1148
df_side,
1149
)
1150
}
0 commit comments