()
| 5385 | |
| 5386 | #[tokio::test] |
| 5387 | async fn test_array_agg() -> Result<()> { |
| 5388 | let df = create_test_table("test") |
| 5389 | .await? |
| 5390 | .aggregate(vec![], vec![array_agg(col("a"))])?; |
| 5391 | |
| 5392 | let results = df.collect().await?; |
| 5393 | |
| 5394 | assert_snapshot!( |
| 5395 | batches_to_string(&results), |
| 5396 | @r" |
| 5397 | +-------------------------------------+ |
| 5398 | | array_agg(test.a) | |
| 5399 | +-------------------------------------+ |
| 5400 | | [abcDEF, abc123, CBAdef, 123AbcDef] | |
| 5401 | +-------------------------------------+ |
| 5402 | " |
| 5403 | ); |
| 5404 | |
| 5405 | Ok(()) |
| 5406 | } |
| 5407 | |
| 5408 | #[tokio::test] |
| 5409 | async fn test_dataframe_placeholder_missing_param_values() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…