[Refactor](pipeline) Refactor operator and builder code of pipeline (#14787)

This commit is contained in:
HappenLee
2022-12-05 18:35:00 +08:00
committed by GitHub
parent 382d35c7e1
commit b30cd86e9e
41 changed files with 481 additions and 953 deletions

View File

@ -861,15 +861,6 @@ Status ExecNode::get_next_after_projects(RuntimeState* state, vectorized::Block*
return get_next(state, block, eos);
}
Status ExecNode::execute(RuntimeState* state, vectorized::Block* input_block,
vectorized::Block* output_block, bool* eos) {
return Status::NotSupported("{} not implements execute", get_name());
}
Status ExecNode::pull(RuntimeState* state, vectorized::Block* output_block, bool* eos) {
return Status::NotSupported("{} not implements pull", get_name());
}
Status ExecNode::sink(RuntimeState* state, vectorized::Block* input_block, bool eos) {
return Status::NotSupported("{} not implements sink", get_name());
}