Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tlm365 committed Sep 5, 2024
1 parent 603e860 commit af52cfd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions datafusion/functions/benches/repeat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fn criterion_benchmark(c: &mut Criterion) {

let args = create_args::<i32>(size, 32, repeat_times, true);
group.bench_function(
&format!(
format!(
"repeat_string_view [size={}, repeat_times={}]",
size, repeat_times
),
Expand All @@ -76,7 +76,7 @@ fn criterion_benchmark(c: &mut Criterion) {

let args = create_args::<i32>(size, 32, repeat_times, false);
group.bench_function(
&format!(
format!(
"repeat_string [size={}, repeat_times={}]",
size, repeat_times
),
Expand All @@ -85,7 +85,7 @@ fn criterion_benchmark(c: &mut Criterion) {

let args = create_args::<i64>(size, 32, repeat_times, false);
group.bench_function(
&format!(
format!(
"repeat_large_string [size={}, repeat_times={}]",
size, repeat_times
),
Expand All @@ -103,7 +103,7 @@ fn criterion_benchmark(c: &mut Criterion) {

let args = create_args::<i32>(size, 32, repeat_times, true);
group.bench_function(
&format!(
format!(
"repeat_string_view [size={}, repeat_times={}]",
size, repeat_times
),
Expand All @@ -112,7 +112,7 @@ fn criterion_benchmark(c: &mut Criterion) {

let args = create_args::<i32>(size, 32, repeat_times, false);
group.bench_function(
&format!(
format!(
"repeat_string [size={}, repeat_times={}]",
size, repeat_times
),
Expand All @@ -121,7 +121,7 @@ fn criterion_benchmark(c: &mut Criterion) {

let args = create_args::<i64>(size, 32, repeat_times, false);
group.bench_function(
&format!(
format!(
"repeat_large_string [size={}, repeat_times={}]",
size, repeat_times
),
Expand Down

0 comments on commit af52cfd

Please sign in to comment.