Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Dec 9, 2022
1 parent fb6c4d3 commit 5ce8006
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions arrow/benches/comparison_kernels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,10 @@ fn add_benchmark(c: &mut Criterion) {
b.iter(|| eq_dyn_utf8_scalar(&dict_arr_a, "test"))
});

c.bench_function("gt_eq_dyn_utf8_scalar scalar dictionary[10] string[4])", |b| {
b.iter(|| gt_eq_dyn_utf8_scalar(&dict_arr_a, "test"))
});
c.bench_function(
"gt_eq_dyn_utf8_scalar scalar dictionary[10] string[4])",
|b| b.iter(|| gt_eq_dyn_utf8_scalar(&dict_arr_a, "test")),
);

c.bench_function("like_utf8_scalar_dyn dictionary[10] string[4])", |b| {
b.iter(|| like_utf8_scalar_dyn(&dict_arr_a, "test"))
Expand Down

0 comments on commit 5ce8006

Please sign in to comment.