timvw commented on issue #2393:
URL:
https://github.com/apache/arrow-datafusion/issues/2393#issuecomment-1115526997
With the current code my use-case works:
```rust
let ctx = SessionContext::new();
let nycdata = "/Users/timvw/nyc/trip data";
let yellow = format!("{}/yellow_tripdata_2018-0[345].csv", nycdata);
let options = CsvReadOptions::new();
let df = ctx.read_csv(yellow, options).await?;
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]