Skip to content

Commit

Permalink
[profile](scanner) Fix wrong metrics (#33965)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel39 authored Apr 22, 2024
1 parent 440b2d0 commit f01053e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions be/src/vec/exec/scan/vscanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,7 @@ Status VScanner::_filter_output_block(Block* block) {
}

Status VScanner::_do_projections(vectorized::Block* origin_block, vectorized::Block* output_block) {
auto& projection_timer = _parent ? _parent->_projection_timer : _local_state->_projection_timer;
auto& exec_timer = _parent ? _parent->_exec_timer : _local_state->_exec_timer;
SCOPED_TIMER(exec_timer);
SCOPED_TIMER(projection_timer);
SCOPED_RAW_TIMER(&_per_scanner_timer);

const size_t rows = origin_block->rows();
if (rows == 0) {
Expand Down

0 comments on commit f01053e

Please sign in to comment.