This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new a35214f92ad Fix typo in benchmarks (#5935)
a35214f92ad is described below
commit a35214f92ad7c3bce19875bb091cb776447aa49e
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Jun 23 03:41:08 2024 -0400
Fix typo in benchmarks (#5935)
---
arrow/benches/comparison_kernels.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arrow/benches/comparison_kernels.rs
b/arrow/benches/comparison_kernels.rs
index 1e081d141a0..360d4865924 100644
--- a/arrow/benches/comparison_kernels.rs
+++ b/arrow/benches/comparison_kernels.rs
@@ -269,11 +269,11 @@ fn add_benchmark(c: &mut Criterion) {
b.iter(|| bench_nilike_utf8_scalar(&arr_string, "%xx_xX%xXX"))
});
- c.bench_function("egexp_matches_utf8 scalar starts with", |b| {
+ c.bench_function("regexp_matches_utf8 scalar starts with", |b| {
b.iter(|| bench_regexp_is_match_utf8_scalar(&arr_string, "^xx"))
});
- c.bench_function("egexp_matches_utf8 scalar ends with", |b| {
+ c.bench_function("regexp_matches_utf8 scalar ends with", |b| {
b.iter(|| bench_regexp_is_match_utf8_scalar(&arr_string, "xx$"))
});