File tree Expand file tree Collapse file tree
vortex-array/src/aggregate_fn/fns/count Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -112,8 +112,12 @@ impl AggregateFnVTable for Count {
112112#[ cfg( test) ]
113113mod 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 ( ) ) ?;
You can’t perform that action at this time.
0 commit comments