()
| 75 | // - AVG (unstable given the wide range of inputs) |
| 76 | #[tokio::test(flavor = "multi_thread")] |
| 77 | async fn test_min() { |
| 78 | let data_gen_config = baseline_config(); |
| 79 | |
| 80 | // Queries like SELECT min(a) FROM fuzz_table GROUP BY b |
| 81 | let query_builder = QueryBuilder::new() |
| 82 | .with_table_name("fuzz_table") |
| 83 | .with_aggregate_function("min") |
| 84 | // min works on all column types |
| 85 | .with_aggregate_arguments(data_gen_config.all_columns()) |
| 86 | .with_dataset_sort_keys(data_gen_config.sort_keys_set.clone()) |
| 87 | .set_group_by_columns(data_gen_config.all_columns()); |
| 88 | |
| 89 | AggregationFuzzerBuilder::from(data_gen_config) |
| 90 | .add_query_builder(query_builder) |
| 91 | .build() |
| 92 | .run() |
| 93 | .await; |
| 94 | } |
| 95 | |
| 96 | #[tokio::test(flavor = "multi_thread")] |
| 97 | async fn test_first_val() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…