[pipeline](fix) Fix bugs to pass all regression cases (#15306)

* [pipeline](fix) Fix bugs to pass all regression cases

* update

* update
This commit is contained in:
Gabriel
2022-12-23 22:17:50 +08:00
committed by GitHub
parent cf9217c0ca
commit 06f71f2bca
16 changed files with 162 additions and 38 deletions

View File

@ -223,7 +223,7 @@ Status VRepeatNode::push(RuntimeState* state, vectorized::Block* input_block, bo
return Status::OK();
}
bool VRepeatNode::need_more_input_data() {
bool VRepeatNode::need_more_input_data() const {
return !_child_block.rows() && !_child_eos;
}