This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 57c0bc6528 delete duplicate test (#9866)
57c0bc6528 is described below

commit 57c0bc65280c467ef6f5a498c6e78a616401b286
Author: Lordworms <[email protected]>
AuthorDate: Sat Mar 30 15:18:16 2024 -0500

    delete duplicate test (#9866)
---
 datafusion/functions/benches/regx.rs | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/datafusion/functions/benches/regx.rs 
b/datafusion/functions/benches/regx.rs
index f22be5ba35..da4882381e 100644
--- a/datafusion/functions/benches/regx.rs
+++ b/datafusion/functions/benches/regx.rs
@@ -103,20 +103,6 @@ fn criterion_benchmark(c: &mut Criterion) {
         })
     });
 
-    c.bench_function("regexp_match_1000", |b| {
-        let mut rng = rand::thread_rng();
-        let data = Arc::new(data(&mut rng)) as ArrayRef;
-        let regex = Arc::new(regex(&mut rng)) as ArrayRef;
-        let flags = Arc::new(flags(&mut rng)) as ArrayRef;
-
-        b.iter(|| {
-            black_box(
-                regexp_match::<i32>(&[data.clone(), regex.clone(), 
flags.clone()])
-                    .expect("regexp_match should work on valid values"),
-            )
-        })
-    });
-
     c.bench_function("regexp_replace_1000", |b| {
         let mut rng = rand::thread_rng();
         let data = Arc::new(data(&mut rng)) as ArrayRef;

Reply via email to