Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions velox/experimental/stateful/StatefulTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void StatefulTask::initOperators() {

RowVectorPtr StatefulTask::next(int32_t& retCode) {
retCode = 0;
initOperators();
// initOperators();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个注释的原因是?


// Run operators one by one. If an operator has output, run its downstream operators.
// If the last operator has output, return the output.
Expand Down Expand Up @@ -112,7 +112,8 @@ RowVectorPtr StatefulTask::next(int32_t& retCode) {
}
return nullptr;
} else {
break;
// break;
return nullptr;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里直接return?

}
}

Expand Down