(
state: &dyn Session,
file_name: &str,
projection: Option<Vec<usize>>,
limit: Option<usize>,
)
| 378 | } |
| 379 | |
| 380 | async fn get_exec( |
| 381 | state: &dyn Session, |
| 382 | file_name: &str, |
| 383 | projection: Option<Vec<usize>>, |
| 384 | limit: Option<usize>, |
| 385 | ) -> Result<Arc<dyn ExecutionPlan>> { |
| 386 | let testdata = test_util::arrow_test_data(); |
| 387 | let store_root = format!("{testdata}/avro"); |
| 388 | let format = AvroFormat {}; |
| 389 | scan_format( |
| 390 | state, |
| 391 | &format, |
| 392 | None, |
| 393 | &store_root, |
| 394 | file_name, |
| 395 | projection, |
| 396 | limit, |
| 397 | ) |
| 398 | .await |
| 399 | } |
| 400 | } |
no test coverage detected
searching dependent graphs…