Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gokselk committed Dec 19, 2024
1 parent f737c65 commit b974d89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/physical-expr/src/equivalence/properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,8 @@ impl EquivalenceProperties {
.and_then(|c| c.value().cloned());

// Expression evaluates to single value
let mut const_expr = ConstExpr::from(target).with_across_partitions(across_partitions);
let mut const_expr =
ConstExpr::from(target).with_across_partitions(across_partitions);
if let Some(val) = value {
const_expr = const_expr.with_value(val);
}
Expand Down

0 comments on commit b974d89

Please sign in to comment.