File tree Expand file tree Collapse file tree
vortex-array/src/aggregate_fn Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ impl<V: AggregateFnVTable> GroupedAccumulator<V> {
171171 }
172172
173173 if let Some ( result) = aggregate_fns
174- . find_groupped_kernel ( elements. encoding_id ( ) , self . aggregate_fn . id ( ) )
174+ . find_grouped_kernel ( elements. encoding_id ( ) , self . aggregate_fn . id ( ) )
175175 . and_then ( |kernel| {
176176 // SAFETY: we assume that elements execution is safe
177177 let groups = unsafe {
@@ -261,7 +261,7 @@ impl<V: AggregateFnVTable> GroupedAccumulator<V> {
261261 }
262262
263263 if let Some ( result) = aggregate_fns
264- . find_groupped_kernel ( elements. encoding_id ( ) , self . aggregate_fn . id ( ) )
264+ . find_grouped_kernel ( elements. encoding_id ( ) , self . aggregate_fn . id ( ) )
265265 . and_then ( |kernel| {
266266 // SAFETY: we assume that elements execution is safe
267267 let groups = unsafe {
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ impl AggregateFnSession {
148148 } ) ;
149149 }
150150
151- pub fn find_groupped_kernel (
151+ pub fn find_grouped_kernel (
152152 & self ,
153153 array_id : impl Into < ArrayId > ,
154154 agg_fn_id : impl Into < AggregateFnId > ,
You can’t perform that action at this time.
0 commit comments