From 64d0c00b0b19fe85a9be1e02da4dde22e189d74c Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Fri, 4 Oct 2019 05:54:49 -0600 Subject: [PATCH] formatting --- rust/datafusion/src/execution/physical_plan/expressions.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 {