()
| 87 | |
| 88 | #[tokio::test] |
| 89 | async fn count_aggregated() -> Result<()> { |
| 90 | let results = |
| 91 | execute_with_partition("SELECT c1, count(c2) FROM test GROUP BY c1", 4).await?; |
| 92 | |
| 93 | assert_snapshot!(batches_to_sort_string(&results), @r" |
| 94 | +----+----------------+ |
| 95 | | c1 | count(test.c2) | |
| 96 | +----+----------------+ |
| 97 | | 0 | 10 | |
| 98 | | 1 | 10 | |
| 99 | | 2 | 10 | |
| 100 | | 3 | 10 | |
| 101 | +----+----------------+ |
| 102 | "); |
| 103 | Ok(()) |
| 104 | } |
| 105 | |
| 106 | #[tokio::test] |
| 107 | async fn count_aggregated_cube() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…