Skip to content

Commit

Permalink
move imports to top. (apache#12530)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachelint authored Sep 19, 2024
1 parent eaf8d16 commit 3b93cc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions datafusion/physical-plan/src/aggregates/row_hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -69,9 +72,6 @@ pub(crate) enum ExecutionState {
Done,
}

use super::order::GroupOrdering;
use super::AggregateExec;

/// This encapsulates the spilling state
struct SpillState {
// ========================================================================
Expand Down

0 comments on commit 3b93cc9

Please sign in to comment.