-
Notifications
You must be signed in to change notification settings - Fork 17
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
enable customizing list inner child element name? #84
Comments
|
Following up on 2: Reading the documentation for
Following up on 3: I see some precedent here: apache/arrow#13851 in the C++ impl to ignore the internal field name when checking for equality. |
@AlJohri thanks for filing this. This is a bug, since as you observed the check should be name agnostic. |
When Spark outputs a parquet file, I believe it always uses the inner list item name of
element
as opposed toitem
:It appears this crate (or one of its dependencies, perhaps arrow2 itself?), is always assuming that the inner field name of a list is
item
rather thanelement
.I'm guessing this is because of this line of code?
arrow2-convert/arrow2_convert/src/field.rs
Line 214 in 7d9e132
element
?P.S. Likely not related, but I ran into a very similar error in this other crate as well: timvw/qv#31
The text was updated successfully, but these errors were encountered: