This is an automated email from the ASF dual-hosted git repository.

kakachen pushed a commit to branch orc
in repository https://gitbox.apache.org/repos/asf/doris-thirdparty.git


The following commit(s) were added to refs/heads/orc by this push:
     new ef68c6ff736 [fix] Updated 
ZlibDecompressionStreamByLibDeflate::getName() to be the same as 
ZlibDecompressionStream::getName() to keep unit tests correct. (#323)
ef68c6ff736 is described below

commit ef68c6ff736a84c8c7185d4a08397c67eff53ad6
Author: Qi Chen <[email protected]>
AuthorDate: Tue Jun 17 15:57:29 2025 +0800

    [fix] Updated ZlibDecompressionStreamByLibDeflate::getName() to be the same 
as ZlibDecompressionStream::getName() to keep unit tests correct. (#323)
---
 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]

Reply via email to