[refactor] Remove debug action since it is never used. (#10484)
Co-authored-by: yiguolei <yiguolei@gmail.com>
This commit is contained in:
@ -196,7 +196,6 @@ bool TableFunctionNode::_roll_table_functions(int last_eos_idx) {
|
||||
// The outer loop is to get the next batch from child node.
|
||||
// And the inner loop is to expand the row by table functions, and output row by row.
|
||||
Status TableFunctionNode::get_next(RuntimeState* state, RowBatch* row_batch, bool* eos) {
|
||||
RETURN_IF_ERROR(exec_debug_action(TExecNodePhase::GETNEXT));
|
||||
SCOPED_TIMER(_runtime_profile->total_time_counter());
|
||||
SCOPED_SWITCH_TASK_THREAD_LOCAL_EXISTED_MEM_TRACKER(mem_tracker());
|
||||
|
||||
@ -375,7 +374,6 @@ Status TableFunctionNode::close(RuntimeState* state) {
|
||||
if (is_closed()) {
|
||||
return Status::OK();
|
||||
}
|
||||
RETURN_IF_ERROR(exec_debug_action(TExecNodePhase::CLOSE));
|
||||
Expr::close(_fn_ctxs, state);
|
||||
vectorized::VExpr::close(_vfn_ctxs, state);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user