-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
Inspect the attached Parquet file generated by parquet-proto to reproduce this issue:
$ parquet-cat old-repeated-int.parquet
repeatedInt = 1
repeatedInt = 2
repeatedInt = 3
$ parquet-cat -j old-repeated-int.parquet
{"repeatedInt":3}
Expected output should be something like
{"repeatedInt":[1,2,3]}
Schema of the attached testing Parquet file is:
message TestProtobuf.RepeatedIntMessage {
repeated int32 repeatedInt;
}
Reporter: Cheng Lian / @liancheng
Assignee: Reuben Kuhnert / @sircodesalotOfTheRound
Related issues:
- Release Parquet-mr 1.9.0 (blocks)
Original Issue Attachments:
PRs and other links:
Note: This issue was originally created as PARQUET-367. Please see the migration documentation for further details.