Remove unused code about showing current queries (#552)

This commit is contained in:
chenhao
2019-01-18 09:53:40 +08:00
committed by Mingyu Chen
parent 4d5f92cce7
commit 717285db1e
17 changed files with 115 additions and 300 deletions

View File

@ -153,7 +153,6 @@ Status AnalyticEvalNode::prepare(RuntimeState* state) {
_mem_pool.reset(new MemPool(mem_tracker()));
_evaluation_timer = ADD_TIMER(runtime_profile(), "EvaluationTime");
_process_rows_counter = ADD_COUNTER(runtime_profile(), "ProcessRows", TUnit::UNIT);
DCHECK_EQ(_result_tuple_desc->slots().size(), _evaluators.size());
for (int i = 0; i < _evaluators.size(); ++i) {
@ -236,7 +235,6 @@ Status AnalyticEvalNode::open(RuntimeState* state) {
while (!_input_eos && _prev_input_row == NULL) {
RETURN_IF_ERROR(child(0)->get_next(state, _curr_child_batch.get(), &_input_eos));
COUNTER_UPDATE(_process_rows_counter, _curr_child_batch->num_rows());
if (_curr_child_batch->num_rows() > 0) {
_prev_input_row = _curr_child_batch->get_row(0);
process_child_batches(state);
@ -612,7 +610,6 @@ Status AnalyticEvalNode::process_child_batches(RuntimeState* state) {
_prev_child_batch->reset();
_prev_child_batch.swap(_curr_child_batch);
RETURN_IF_ERROR(child(0)->get_next(state, _curr_child_batch.get(), &_input_eos));
COUNTER_UPDATE(_process_rows_counter, _curr_child_batch->num_rows());
}
return Status::OK;