This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 33b379a51d5 [bug](join) remove broadcast join check about shared hashtable signal (#37969) 33b379a51d5 is described below commit 33b379a51d5c18f7c035b0086415646ae9e3154d Author: zhangstar333 <87313068+zhangstar...@users.noreply.github.com> AuthorDate: Wed Jul 17 12:26:19 2024 +0800 [bug](join) remove broadcast join check about shared hashtable signal (#37969) ## Proposed changes Issue Number: close #xxx <!--Describe your changes.--> --- be/src/pipeline/exec/hashjoin_build_sink.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/be/src/pipeline/exec/hashjoin_build_sink.cpp b/be/src/pipeline/exec/hashjoin_build_sink.cpp index ea205a0d2b5..26a63064e82 100644 --- a/be/src/pipeline/exec/hashjoin_build_sink.cpp +++ b/be/src/pipeline/exec/hashjoin_build_sink.cpp @@ -598,7 +598,6 @@ Status HashJoinBuildSinkOperatorX::sink(RuntimeState* state, vectorized::Block* } else if (!local_state._should_build_hash_table) { DCHECK(_shared_hashtable_controller != nullptr); DCHECK(_shared_hash_table_context != nullptr); - CHECK(_shared_hash_table_context->signaled); // the instance which is not build hash table, it's should wait the signal of hash table build finished. // but if it's running and signaled == false, maybe the source operator have closed caused by some short circuit, if (!_shared_hash_table_context->signaled) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org