(expr: &Rank, expected: Vec<u64>)
| 375 | use datafusion_common::cast::{as_float64_array, as_uint64_array}; |
| 376 | |
| 377 | fn test_with_rank(expr: &Rank, expected: Vec<u64>) -> Result<()> { |
| 378 | test_i32_result(expr, vec![0..2, 2..3, 3..6, 6..7, 7..8], expected) |
| 379 | } |
| 380 | |
| 381 | #[expect(clippy::single_range_in_vec_init)] |
| 382 | fn test_without_rank(expr: &Rank, expected: Vec<u64>) -> Result<()> { |
no test coverage detected
searching dependent graphs…