Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Jun 8, 2024
1 parent 26e2b42 commit a8d5e7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions be/src/vec/exec/scan/scanner_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,9 @@ Status ScannerContext::get_free_block(bool force, vectorized::BlockUPtr& block)
_free_blocks_memory_usage_mark->set(_free_blocks_memory_usage);
} else if (_free_blocks_memory_usage < _max_bytes_in_queue || force) {
_newly_create_free_blocks_num->update(1);
RETURN_IF_CATCH_EXCEPTION(block = vectorized::Block::create_unique(_output_tuple_desc->slots(), 0,
true /*ignore invalid slots*/));
RETURN_IF_CATCH_EXCEPTION(
block = vectorized::Block::create_unique(_output_tuple_desc->slots(), 0,
true /*ignore invalid slots*/));
}

return Status::OK();
Expand Down

0 comments on commit a8d5e7b

Please sign in to comment.