Executes an expression on the test dataframe as a select.
(expr: Expr)
| 76 | |
| 77 | /// Executes an expression on the test dataframe as a select. |
| 78 | async fn get_batches(expr: Expr) -> Result<Vec<RecordBatch>> { |
| 79 | get_batches_with_limit(expr, 10).await |
| 80 | } |
| 81 | |
| 82 | async fn get_batches_with_limit(expr: Expr, limit: usize) -> Result<Vec<RecordBatch>> { |
| 83 | let df = create_test_table().await?; |
no test coverage detected
searching dependent graphs…