Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.13.1
-
None
Description
Tried write a map<string,string> column in a Parquet file. The table should contain :
{"key3":"val3","key4":null} {"key3":"val3","key4":null} {"key1":null,"key2":"val2"} {"key3":"val3","key4":null} {"key3":"val3","key4":null}
... and when you do a query like
SELECT * from mytable
We can see that the table is corrupted :
{"key3":"val3"} {"key4":"val3"} {"key3":"val2"} {"key4":"val3"} {"key1":"val3"}
I've not been able to read the Parquet file in our software afterwards, and consequently I suspect it to be corrupted.
For those who are interested, I generated this Parquet table from an Avro file.