Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
Signed-off-by: silverbullet233 <[email protected]>
  • Loading branch information
silverbullet233 committed Sep 18, 2024
1 parent 5717597 commit 3ca485f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/exec/tablet_sink_index_channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ void NodeChannel::_reset_cur_chunk(Chunk* input) {
int64_t before_consumed_bytes = CurrentThread::current().get_consumed_bytes();
_cur_chunk = input->clone_empty_with_slot();
int64_t after_consumed_bytes = CurrentThread::current().get_consumed_bytes();
_cur_chunk_mem_usage = after_consumed_bytes - before_consumed_bytes;
_cur_chunk_mem_usage += after_consumed_bytes - before_consumed_bytes;
}

void NodeChannel::_append_data_to_cur_chunk(const Chunk& src, const uint32_t* indexes, uint32_t from, uint32_t size) {
Expand Down

0 comments on commit 3ca485f

Please sign in to comment.