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

lihaopeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 0ab0479633 [Compile](lzo) fix lzo decompressor compiler error (#15956)
0ab0479633 is described below

commit 0ab0479633985520e23803bcc69da67e4555cc42
Author: HappenLee <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to