Create a logical plan from the specified sql
(ctx: &SessionContext, rt: &Runtime, sql: &str)
| 43 | |
| 44 | /// Create a logical plan from the specified sql |
| 45 | fn logical_plan(ctx: &SessionContext, rt: &Runtime, sql: &str) { |
| 46 | black_box(rt.block_on(ctx.sql(sql)).unwrap()); |
| 47 | } |
| 48 | |
| 49 | /// Create a physical ExecutionPlan (by way of logical plan) |
| 50 | fn physical_plan(ctx: &SessionContext, rt: &Runtime, sql: &str) { |
no test coverage detected
searching dependent graphs…