yiguolei commented on code in PR #49638:
URL: https://github.com/apache/doris/pull/49638#discussion_r2022140301
##########
be/src/pipeline/pipeline_task.cpp:
##########
@@ -447,11 +443,12 @@ Status PipelineTask::execute(bool* done) {
// `_sink->is_finished(_state)` means sink operator should be finished
if (_sink->is_finished(_state)) {
- set_wake_up_and_dep_ready();
+ set_wake_up_early();
+ return Status::OK();
}
// `_dry_run` means sink operator need no more data
- _eos = wake_up_early() || _dry_run || _eos;
+ _eos = _wake_up_early || _dry_run || _eos;
Review Comment:
这里为什么要把wakeup early 当做eos?
--
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]