This is an automated email from the ASF dual-hosted git repository.
kakachen pushed a commit to branch orc-for-doris-21
in repository https://gitbox.apache.org/repos/asf/doris-thirdparty.git
The following commit(s) were added to refs/heads/orc-for-doris-21 by this push:
new caa59ddb811 [fix] Updated
ZlibDecompressionStreamByLibDeflate::getName() to be the same as
ZlibDecompressionStream::getName() to keep unit tests correct. (#323) (#327)
caa59ddb811 is described below
commit caa59ddb811dc63c2c33eb96f2935f106af0b7ba
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]