pitrou commented on code in PR #46992: URL: https://github.com/apache/arrow/pull/46992#discussion_r2192848480
########## cpp/src/parquet/statistics.h: ########## @@ -128,6 +128,9 @@ class PARQUET_EXPORT EncodedStatistics { const std::string& max() const { return max_; } const std::string& min() const { return min_; } + std::optional<bool> is_max_value_exact = std::nullopt; + std::optional<bool> is_min_value_exact = std::nullopt; Review Comment: The default value can be omitted, since that's the default default value for optionals :) -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org