-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: Panic on SELECT * FROM arrow(?, ?)
when using TimestampMillisecondArray
arrow type.
#286
Comments
Appears to just be an unimplemented conversion in primitive_array_to_vector. |
This commit 626a451 resolves the panic, but may not handle proper timezone conversion. |
We're also having the same issue |
Edit: Looks like you've already identified the issue, ill give it a shot. |
There are multiple layers to this as well, we should return an error instead of panicking, and fix the pointer issue that causes the following segfault |
Overview
When creating a table in DuckDB using an Arrow record batch, the duckDB panics when the RecordBatch has a column of type
TimestampMillisecondArray
(and true of other timestamp array types).To reproduce
main.rs
cargo.toml
Stacktrace
The text was updated successfully, but these errors were encountered: