diff --git a/rust/datafusion/src/execution/physical_plan/expressions.rs b/rust/datafusion/src/execution/physical_plan/expressions.rs index 8b9f79171fd29..5f535367efdb5 100644 --- a/rust/datafusion/src/execution/physical_plan/expressions.rs +++ b/rust/datafusion/src/execution/physical_plan/expressions.rs @@ -235,9 +235,7 @@ impl AggregateExpr for Count { } fn create_accumulator(&self) -> Rc> { - Rc::new(RefCell::new(CountAccumulator { - count: 0, - })) + Rc::new(RefCell::new(CountAccumulator { count: 0 })) } fn create_combiner(&self, column_index: usize) -> Arc {