mapleFU commented on issue #43682:
URL: https://github.com/apache/arrow/issues/43682#issuecomment-2312795371
> We need the parquet to be written with the correct schema.
I've check this
```diff
// parquet writer options
auto parquet_properties = parquet::WriterProperties::Builder()
.compression(arrow::Compression::SNAPPY)
->data_page_version(parquet::ParquetDataPageVersion::V2)
->encoding(parquet::Encoding::DELTA_BINARY_PACKED)
->enable_dictionary()
->enable_statistics()
+ ->store_schema()
->version(parquet::ParquetVersion::PARQUET_2_6)
->build();
```
Maybe you can try to add a `store_schema` here. So sorry for delaying
--
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]