()
| 39 | } |
| 40 | |
| 41 | fn array_without_nulls() -> ArrayRef { |
| 42 | let mut rng = rng(); |
| 43 | |
| 44 | let values = ScalarBuffer::from_iter(repeat_with(|| rng.random()).take(4096)); |
| 45 | |
| 46 | Arc::new(Int32Array::new(values.clone(), None)) |
| 47 | } |
| 48 | |
| 49 | fn criterion_benchmark(c: &mut Criterion) { |
| 50 | for with_nulls in 1..12 { |
no test coverage detected