This is an automated email from the ASF dual-hosted git repository.

jorgecarleitao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new b8805d4  fix clippy warning (#286)
b8805d4 is described below

commit b8805d4f44d4da8f16069d93ab342dc6f082ca07
Author: Jiayu Liu <jimex...@users.noreply.github.com>
AuthorDate: Fri May 7 12:14:45 2021 +0800

    fix clippy warning (#286)
---
 datafusion/src/physical_plan/distinct_expressions.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/datafusion/src/physical_plan/distinct_expressions.rs 
b/datafusion/src/physical_plan/distinct_expressions.rs
index ffc138a..927f16f 100644
--- a/datafusion/src/physical_plan/distinct_expressions.rs
+++ b/datafusion/src/physical_plan/distinct_expressions.rs
@@ -64,10 +64,10 @@ impl DistinctCount {
         let state_data_types = 
input_data_types.into_iter().map(state_type).collect();
 
         Self {
-            state_data_types,
-            exprs,
             name,
             data_type,
+            state_data_types,
+            exprs,
         }
     }
 }

Reply via email to