-
Notifications
You must be signed in to change notification settings - Fork 786
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
feat(parquet): support for reading structs nested within lists #1187
Conversation
@@ -1770,4 +1770,104 @@ mod tests { | |||
let stats = column.statistics().unwrap(); | |||
assert_eq!(stats.null_count(), 2); | |||
} | |||
|
|||
#[test] | |||
fn test_list_of_struct_roundtrip() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: This test will fail until #1185 is merged, as the data written does not match the original.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1185 has now been merged 🚀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me -- thank you @helgikrs
I merged |
Thanks again @helgikrs |
Which issue does this PR close?
Closes #1186.
What changes are included in this PR?
Adds support reading lists of structs in the parquet reader. Adds a test
roundtrip writing and reading structs in a list.
Are there any user-facing changes?
No.