This is an automated email from the ASF dual-hosted git repository. kakachen pushed a commit to branch cqtest in repository https://gitbox.apache.org/repos/asf/doris-thirdparty.git
commit 487ef573fb719af384d465805d24023ae3aafd71 Author: Qi Chen <[email protected]> AuthorDate: Fri Jul 11 01:19:38 2025 +0800 [fix] Updated ZlibDecompressionStreamByLibDeflate::getName() to be the same as ZlibDecompressionStream::getName() to keep unit tests correct. (#323) (#327) --- c++/src/Compression.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++/src/Compression.cc b/c++/src/Compression.cc index 5efb6c1d3ab..0354e99e01a 100644 --- a/c++/src/Compression.cc +++ b/c++/src/Compression.cc @@ -810,7 +810,7 @@ namespace orc { std::string getName() const override { std::ostringstream result; - result << "ZlibDecompressionStreamByLibDeflate(" << getStreamName() << ")"; + result << "zlib(" << input->getName() << ")"; return result.str(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
