Skip to content

Commit ba733d5

Browse files
committed
rename
Signed-off-by: Robert Kruszewski <github@robertk.io>
1 parent afec7cb commit ba733d5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

vortex-array/src/aggregate_fn/accumulator_grouped.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

vortex-array/src/aggregate_fn/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>,

0 commit comments

Comments
 (0)