(
sql: &str,
)
| 92 | } |
| 93 | |
| 94 | async fn collect_query( |
| 95 | sql: &str, |
| 96 | ) -> datafusion::error::Result<Vec<datafusion::arrow::record_batch::RecordBatch>> { |
| 97 | let ctx = create_context().await; |
| 98 | ctx.sql(sql).await?.collect().await |
| 99 | } |
| 100 | |
| 101 | async fn create_physical_plan(sql: &str) -> datafusion::error::Result<Arc<dyn ExecutionPlan>> { |
| 102 | let ctx = create_context().await; |
no test coverage detected