Skip to content

Commit 1761714

Browse files
committed
clippy
1 parent acab4de commit 1761714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-expr/benches/case_when.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ fn run_benchmarks(c: &mut Criterion, batch: &RecordBatch) {
254254
let when_thens: Vec<_> = (0..20i32)
255255
.map(|i| {
256256
let col_idx = (i as usize % 3) + 1;
257-
let col_name = format!("c{}", col_idx);
257+
let col_name = format!("c{col_idx}");
258258
(lit(i), col(&col_name, &batch.schema()).unwrap())
259259
})
260260
.collect();

0 commit comments

Comments
 (0)