Skip to content

Commit 51b0bad

Browse files
committed
Fix clippy error
1 parent fcca244 commit 51b0bad

File tree

1 file changed

+4
-4
lines changed
  • datafusion/physical-plan/src/joins/hash_join

1 file changed

+4
-4
lines changed

datafusion/physical-plan/src/joins/hash_join/exec.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,15 +1136,15 @@ impl ExecutionPlan for HashJoinExec {
11361136

11371137
fn handle_child_pushdown_result(
11381138
&self,
1139-
_phase: FilterPushdownPhase,
1139+
phase: FilterPushdownPhase,
11401140
child_pushdown_result: ChildPushdownResult,
1141-
_config: &ConfigOptions,
1141+
config: &ConfigOptions,
11421142
) -> Result<FilterPushdownPropagation<Arc<dyn ExecutionPlan>>> {
11431143
let df_side = self.join_type.dynamic_filter_side();
11441144
self.handle_child_pushdown_result_with_side(
1145-
_phase,
1145+
phase,
11461146
child_pushdown_result,
1147-
_config,
1147+
config,
11481148
df_side,
11491149
)
11501150
}

0 commit comments

Comments
 (0)