This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 84d8e4f012b8605c4adc9ec3e92262cc14460398 Author: Pxl <[email protected]> AuthorDate: Mon May 27 14:33:17 2024 +0800 [Bug](runtime-filter) try to fix DCHECK fail on _acquire_runtime_filter (#35422) try to fix DCHECK fail on _acquire_runtime_filter --- be/src/pipeline/pipeline_task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/pipeline/pipeline_task.cpp b/be/src/pipeline/pipeline_task.cpp index cd2b910ca25..781566157f0 100644 --- a/be/src/pipeline/pipeline_task.cpp +++ b/be/src/pipeline/pipeline_task.cpp @@ -290,7 +290,7 @@ Status PipelineTask::execute(bool* eos) { return Status::OK(); } // The status must be runnable - if (!_opened) { + if (!_opened && !_fragment_context->is_canceled()) { RETURN_IF_ERROR(_open()); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
