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

morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git

commit 768ff43c65226a966a2734a37b74de7ff9a33d85
Author: HappenLee <happen...@hotmail.com>
AuthorDate: Tue Jan 17 09:56:07 2023 +0800

    [Compile](lzo) fix lzo decompressor compiler error (#15956)
---
 be/src/exec/decompressor.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/exec/decompressor.h b/be/src/exec/decompressor.h
index 0b10b874fc..a9e6ef7b02 100644
--- a/be/src/exec/decompressor.h
+++ b/be/src/exec/decompressor.h
@@ -150,7 +150,7 @@ public:
 private:
     friend class Decompressor;
     LzopDecompressor()
-            : Decompressor(CompressType::LZOP), _header_info({0}), 
_is_header_loaded(false) {}
+            : Decompressor(CompressType::LZOP), _header_info(), 
_is_header_loaded(false) {}
     Status init() override;
 
 private:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to