(
state: &dyn Session,
file_name: &str,
projection: Option<Vec<usize>>,
limit: Option<usize>,
has_header: bool,
)
| 630 | } |
| 631 | |
| 632 | async fn get_exec( |
| 633 | state: &dyn Session, |
| 634 | file_name: &str, |
| 635 | projection: Option<Vec<usize>>, |
| 636 | limit: Option<usize>, |
| 637 | has_header: bool, |
| 638 | ) -> Result<Arc<dyn ExecutionPlan>> { |
| 639 | let root = format!("{}/csv", arrow_test_data()); |
| 640 | let format = CsvFormat::default().with_has_header(has_header); |
| 641 | scan_format(state, &format, None, &root, file_name, projection, limit).await |
| 642 | } |
| 643 | |
| 644 | #[tokio::test] |
| 645 | async fn test_csv_serializer() -> Result<()> { |
no test coverage detected
searching dependent graphs…