-
Notifications
You must be signed in to change notification settings - Fork 861
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
List-of-String Array panics in the presence of row filters #4365
Comments
Thank you for the report, yes I would expect this to work correctly A reduced example:
It also does not seem to be specific to lists of strings. I will continue digging |
Thank you for this, I've filed #4368 with the cause of this. Will need to take some time to work out how best to fix this |
tustvold
added a commit
to tustvold/arrow-rs
that referenced
this issue
Jun 6, 2023
tustvold
added a commit
to tustvold/arrow-rs
that referenced
this issue
Jun 6, 2023
tustvold
added a commit
that referenced
this issue
Jun 8, 2023
@tustvold thank you so much for the quick turnaround! |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Reading Parquet files that have a List array with items of type
Utf8
, panic in the presence of a filter on another column due to a length mismatch of arrays when building the underlying StructArray. The error message is:To Reproduce
This is a pretty small example I built:
the
Cargo.toml
file here looks like:run it with
cargo run --features with_bug
Expected behavior
My understanding is that it should work, and the example even contains a case where it works.
Additional context
Would be glad to give a hand, I'm just not exactly sure what's the right way to tackle this issue and how big it is. Seems like it's somewhere relatively deep the the parquet logic, but I couldn't pinpoint the exact cause.
The text was updated successfully, but these errors were encountered: