Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordworms committed Feb 6, 2024
1 parent 8a4b21e commit 2a4b60b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/physical-expr/src/equivalence/properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ impl EquivalenceProperties {
.map(|sort_expr| {
let referring_exprs: Vec<_> = matching_exprs
.iter()
.filter(|matched| expr_refers(&matched, &sort_expr.expr))
.filter(|matched| expr_refers(matched, &sort_expr.expr))
.cloned()
.collect();
// does not referring to any matching component, we just skip it
Expand Down

0 comments on commit 2a4b60b

Please sign in to comment.