Skip to content

Commit 3c5bf63

Browse files
committed
Explicitly list number of columns
1 parent e6e5b7c commit 3c5bf63

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arrow/benches/row_format.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ fn run_benchmark_on_medium_amount_and_types_of_columns_without_nesting(
179179
cols.push(Arc::new(create_f64_array_with_seed(batch_size, nulls, seed)) as ArrayRef);
180180
}
181181

182-
do_bench(c, format!("{batch_size} lot of columns").as_str(), cols);
182+
assert_eq!(cols.len(), 53);
183+
do_bench(c, format!("{batch_size} 53 columns").as_str(), cols);
183184
}
184185

185186
fn row_bench(c: &mut Criterion) {

0 commit comments

Comments
 (0)