Execute query and return result set as 2-d table of Vecs `result[row][column]`
(ctx: &SessionContext, sql: &str)
| 140 | /// Execute query and return result set as 2-d table of Vecs |
| 141 | /// `result[row][column]` |
| 142 | async fn execute(ctx: &SessionContext, sql: &str) -> Vec<Vec<String>> { |
| 143 | result_vec(&execute_to_batches(ctx, sql).await) |
| 144 | } |
| 145 | |
| 146 | /// Execute SQL and return results |
| 147 | async fn execute_with_partition( |
no test coverage detected
searching dependent graphs…