From da87fcb477ef5d79d99ffbba9130e8508f254574 Mon Sep 17 00:00:00 2001 From: HappenLee Date: Tue, 5 Dec 2023 13:00:14 +0800 Subject: [PATCH] [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 708b3093a0..3acbc1a164 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);