Signed-off-by: discord9 <discord9@163.com>
This commit is contained in:
discord9
2025-12-22 21:07:24 +08:00
parent 088401c3e9
commit 1d3cfdc0e5

View File

@@ -1340,13 +1340,15 @@ mod test {
}
}
type InputRangeData = Vec<((i64, i64), Vec<Vec<i64>>)>; // (start, end) -> data batches
/// Comprehensive test case structure that encapsulates all test parameters
#[derive(Debug, Clone)]
struct TestCase {
#[allow(dead_code)]
name: &'static str,
unit: TimeUnit,
input_ranges: Vec<((i64, i64), Vec<Vec<i64>>)>, // (start, end) -> data batches
input_ranges: InputRangeData, // (start, end) -> data batches
descending: bool,
nulls_first: bool,
limit: Option<usize>,