Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniël Heres committed Jul 5, 2023
1 parent be8a1e2 commit 890b517
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datafusion/physical-expr/src/aggregate/min_max.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1257,8 +1257,7 @@ where
opt_filter,
total_num_groups,
|group_index, new_value| {
let val =
&mut self.min_max[group_index];
let val = &mut self.min_max[group_index];
match MIN {
true => {
if new_value < *val {
Expand Down

0 comments on commit 890b517

Please sign in to comment.