zeevm commented on issue #6648:
URL: https://github.com/apache/arrow-rs/issues/6648#issuecomment-2445548305

   
[repeated_no_list.parquet.gz](https://github.com/user-attachments/files/17564329/repeated_no_list.parquet.gz)
   The attached file has two REPEATED primitive fields that aren't read 
correctly with the current implementation:
   {Int32: 0, String: "foo"}
   {Int32: 1, String: "zero"}
   {Int32: 2, String: "one"}
   {Int32: 3, String: "two"}
   
   The fix yields the proper result:
   {Int32: [0, 1, 2, 3], String: ["foo", "zero", "one", "two"]}
   {Int32: [], String: ["three"]}
   {Int32: [4], String: ["four"]}
   {Int32: [5, 6, 7, 8], String: ["five", "six", "seven", "eight"]}
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to