Skip to content

Commit c9025b2

Browse files
committed
fmt
Signed-off-by: blaginin <github@blaginin.me>
1 parent ba4bd86 commit c9025b2

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • vortex-array/src/aggregate_fn/fns/count

vortex-array/src/aggregate_fn/fns/count/mod.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,12 @@ impl AggregateFnVTable for Count {
112112
#[cfg(test)]
113113
mod tests {
114114
use vortex_buffer::buffer;
115-
use vortex_error::{VortexExpect, VortexResult};
115+
use vortex_error::VortexExpect;
116+
use vortex_error::VortexResult;
116117

118+
use crate::ArrayRef;
119+
use crate::ExecutionCtx;
120+
use crate::IntoArray;
117121
use crate::LEGACY_SESSION;
118122
use crate::VortexSessionExecute;
119123
use crate::aggregate_fn::Accumulator;
@@ -129,7 +133,6 @@ mod tests {
129133
use crate::dtype::PType;
130134
use crate::scalar::Scalar;
131135
use crate::validity::Validity;
132-
use crate::{ArrayRef, ExecutionCtx, IntoArray};
133136

134137
pub fn count(array: &ArrayRef, ctx: &mut ExecutionCtx) -> VortexResult<usize> {
135138
let mut acc = Accumulator::try_new(Count, EmptyOptions, array.dtype().clone())?;

0 commit comments

Comments
 (0)