File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
datafusion/functions-aggregate/benches Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments