()
| 71 | |
| 72 | #[tokio::test] |
| 73 | async fn count_partitioned() -> Result<()> { |
| 74 | let results = |
| 75 | execute_with_partition("SELECT count(c1), count(c2) FROM test", 4).await?; |
| 76 | assert_eq!(results.len(), 1); |
| 77 | |
| 78 | assert_snapshot!(batches_to_sort_string(&results), @r" |
| 79 | +----------------+----------------+ |
| 80 | | count(test.c1) | count(test.c2) | |
| 81 | +----------------+----------------+ |
| 82 | | 40 | 40 | |
| 83 | +----------------+----------------+ |
| 84 | "); |
| 85 | Ok(()) |
| 86 | } |
| 87 | |
| 88 | #[tokio::test] |
| 89 | async fn count_aggregated() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…