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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]