Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lint
  • Loading branch information
adriangb committed Jul 28, 2025
commit ab34cacac19df7fcea113bbbeab73297a5a7ee07
4 changes: 2 additions & 2 deletions datafusion/physical-optimizer/src/filter_pushdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ fn push_down_filters(

// Add the filtered parent predicates to all_predicates
for filter in parent_filters_for_child.items() {
all_predicates.push(filter.predicate.clone());
all_predicates.push(Arc::clone(&filter.predicate));
}

let num_parent_filters = all_predicates.len() - num_self_filters;
Expand Down Expand Up @@ -572,7 +572,7 @@ fn push_down_filters(
// Update parent_filter_pushdown_supports with the mapped results
// mapped_parent_results already has the results at their original indices
for (idx, support) in parent_filter_pushdown_supports.iter_mut().enumerate() {
support[child_idx] = mapped_parent_results[idx].clone();
support[child_idx] = mapped_parent_results[idx];
}
}

Expand Down