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

jonah pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 3b93cc952b move imports to top. (#12530)
3b93cc952b is described below

commit 3b93cc952b889cec2364ad2490ae18ecddb3ca49
Author: kamille <[email protected]>
AuthorDate: Thu Sep 19 15:42:20 2024 +0800

    move imports to top. (#12530)
---
 datafusion/physical-plan/src/aggregates/row_hash.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/datafusion/physical-plan/src/aggregates/row_hash.rs 
b/datafusion/physical-plan/src/aggregates/row_hash.rs
index 0332131d4b..60efc77112 100644
--- a/datafusion/physical-plan/src/aggregates/row_hash.rs
+++ b/datafusion/physical-plan/src/aggregates/row_hash.rs
@@ -53,6 +53,9 @@ use futures::ready;
 use futures::stream::{Stream, StreamExt};
 use log::debug;
 
+use super::order::GroupOrdering;
+use super::AggregateExec;
+
 #[derive(Debug, Clone)]
 /// This object tracks the aggregation phase (input/output)
 pub(crate) enum ExecutionState {
@@ -69,9 +72,6 @@ pub(crate) enum ExecutionState {
     Done,
 }
 
-use super::order::GroupOrdering;
-use super::AggregateExec;
-
 /// This encapsulates the spilling state
 struct SpillState {
     // ========================================================================


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to