[refactor] Remove debug action since it is never used. (#10484)

Co-authored-by: yiguolei <yiguolei@gmail.com>
This commit is contained in:
yiguolei
2022-06-29 20:37:51 +08:00
committed by GitHub
parent 9b6ed1525d
commit 4ec6e3ee81
40 changed files with 4 additions and 157 deletions

View File

@ -47,7 +47,6 @@ Status VAssertNumRowsNode::open(RuntimeState* state) {
}
Status VAssertNumRowsNode::get_next(RuntimeState* state, Block* block, bool* eos) {
RETURN_IF_ERROR(exec_debug_action(TExecNodePhase::GETNEXT));
SCOPED_TIMER(_runtime_profile->total_time_counter());
RETURN_IF_ERROR(child(0)->get_next(state, block, eos));
_num_rows_returned += block->rows();