Hi all,
I have this piece of code which produces a valid parquet file (using an arrow table), however the contents of the file are empty.
Code: https://ideone.com/DJkKUF
When I run "parquet-tools cat test.parquet" and actually try to read the file, i get an empty output, shouldn't the file have 5 entries?
Edit: Furthermore when i run "parquet-tools schema test.parquet" the schema prints correctly:
message schema {
optional group MyStruct {
required binary str (UTF8);
}
}