-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I updated the nyc benchmark schema to use timestamps:
fn nyctaxi_schema() -> Schema {
Schema::new(vec![
Field::new("VendorID", DataType::Utf8, true),
Field::new("pickup_datetime", DataType::Timestamp(TimeUnit::Microsecond, None), true),
Field::new("dropoff_datetime", DataType::Timestamp(TimeUnit::Microsecond, None), true),
...
I tried running a query and got this error.
Error: ArrowError(ExternalError(ArrowError(ParseError("Error while parsing value 2020-01-01 00:35:39 for column 1 at line 2"))))
Describe the solution you'd like
I would like to be able to query CSV files containing timestamps.
Describe alternatives you've considered
None.
Additional context
None.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers