(query: &str)
| 3392 | } |
| 3393 | |
| 3394 | async fn plan_sql(query: &str) -> Result<Arc<dyn ExecutionPlan>> { |
| 3395 | let ctx = SessionContext::new(); |
| 3396 | ctx.sql(query).await?.create_physical_plan().await |
| 3397 | } |
| 3398 | |
| 3399 | async fn collect_sql(query: &str) -> Result<Vec<RecordBatch>> { |
| 3400 | let ctx = SessionContext::new(); |
no test coverage detected
searching dependent graphs…