yiguolei commented on code in PR #35422: URL: https://github.com/apache/doris/pull/35422#discussion_r1615462524
########## 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()) { Review Comment: It will not fix this bug. If at line 293, query is not cancelled, you will go to line 294 and query is cancelled, it will core during line 294. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org