dongxiao1198 commented on code in PR #108: URL: https://github.com/apache/iceberg-cpp/pull/108#discussion_r2104035641
########## src/iceberg/table_metadata.cc: ########## @@ -153,14 +155,42 @@ Result<MetadataFileCodecType> TableMetadataUtil::CodecFromFileName( return MetadataFileCodecType::kNone; } +Result<std::string> DecompressGZIPFile(const std::string& filepath) { + gzFile file = gzopen(filepath.c_str(), "rb"); Review Comment: yes...can not use this here, i will fallback to use stream api,thx -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org