emkornfield commented on code in PR #48431:
URL: https://github.com/apache/arrow/pull/48431#discussion_r2714733405
##########
cpp/src/parquet/properties.h:
##########
@@ -139,6 +139,11 @@ class PARQUET_EXPORT ReaderProperties {
void set_footer_read_size(size_t size) { footer_read_size_ = size; }
size_t footer_read_size() const { return footer_read_size_; }
+ // If enabled, try to read the metadata3 footer from the file.
+ // If it fails, fall back to Thrift footer decoding.
+ bool read_metadata3() const { return read_metadata3_; }
Review Comment:
```suggestion
bool read_flatbuffer_metadata_if_present() const { return read_metadata3_;
}
```
--
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]