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

yiguolei 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 da87fcb477e [bug](function) fix compound expr coredump problem (#27988)
da87fcb477e is described below

commit da87fcb477ef5d79d99ffbba9130e8508f254574
Author: HappenLee <[email protected]>
AuthorDate: Tue Dec 5 13:00:14 2023 +0800

    [bug](function) fix compound expr coredump problem (#27988)
---
 be/src/vec/exprs/vcompound_pred.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/vec/exprs/vcompound_pred.h 
b/be/src/vec/exprs/vcompound_pred.h
index 708b3093a06..3acbc1a1645 100644
--- a/be/src/vec/exprs/vcompound_pred.h
+++ b/be/src/vec/exprs/vcompound_pred.h
@@ -114,7 +114,7 @@ public:
             return res_id;
         };
 
-        auto create_null_map_column = [&](ColumnPtr null_map_column,
+        auto create_null_map_column = [&](ColumnPtr& null_map_column,
                                           uint8* __restrict null_map_data) {
             if (null_map_data == nullptr) {
                 null_map_column = ColumnUInt8::create(size, 0);


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to