From 4438ff57dca00a7fc23123d92595db0cb18e6692 Mon Sep 17 00:00:00 2001 From: BiteTheDDDDt Date: Thu, 5 Dec 2024 11:20:24 +0800 Subject: [PATCH] fix compile --- be/src/pipeline/exec/hashjoin_build_sink.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/be/src/pipeline/exec/hashjoin_build_sink.cpp b/be/src/pipeline/exec/hashjoin_build_sink.cpp index d3f0b186c92cb5..ccd8757aba7f28 100644 --- a/be/src/pipeline/exec/hashjoin_build_sink.cpp +++ b/be/src/pipeline/exec/hashjoin_build_sink.cpp @@ -166,9 +166,9 @@ Status HashJoinBuildSinkLocalState::close(RuntimeState* state, Status exec_statu SCOPED_TIMER(_runtime_filter_compute_timer); _runtime_filter_slots->insert(block); } - } else if (p._shared_hashtable_controller && !p._shared_hash_table_context->signaled || - p._shared_hash_table_context && - !p._shared_hash_table_context->complete_build_stage) { + } else if ((p._shared_hashtable_controller && !p._shared_hash_table_context->signaled) || + (p._shared_hash_table_context && + !p._shared_hash_table_context->complete_build_stage)) { throw Exception(ErrorCode::INTERNAL_ERROR, "build_sink::close meet error state"); }