Skip to content

Commit 067a6b6

Browse files
committed
Use same benchmark names for comparison
1 parent f5ccfbb commit 067a6b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/functions-aggregate/benches/count_distinct.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ fn count_distinct_groups_benchmark(c: &mut Criterion) {
193193

194194
if count_fn.groups_accumulator_supported(args.clone()) {
195195
c.bench_function(
196-
&format!("count_distinct_groups i64 {num_groups} groups (GroupsAccumulator)"),
196+
&format!("count_distinct_groups i64 {num_groups} groups"),
197197
|b| {
198198
b.iter(|| {
199199
let (_schema, args) = prepare_args(DataType::Int64);
@@ -206,7 +206,7 @@ fn count_distinct_groups_benchmark(c: &mut Criterion) {
206206
);
207207
} else {
208208
c.bench_function(
209-
&format!("count_distinct_groups i64 {num_groups} groups (N Accumulators)"),
209+
&format!("count_distinct_groups i64 {num_groups} groups"),
210210
|b| {
211211
b.iter(|| {
212212
let mut accumulators: Vec<_> = (0..num_groups)

0 commit comments

Comments
 (0)