mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Fix clang-tidy
This commit is contained in:
parent
272ea7fc5b
commit
67fc9d7129
@ -596,7 +596,7 @@ void PushingToLiveViewSink::consume(Chunk chunk)
|
||||
{
|
||||
Progress local_progress(chunk.getNumRows(), chunk.bytes(), 0);
|
||||
StorageLiveView::writeIntoLiveView(live_view, getHeader().cloneWithColumns(chunk.detachColumns()), context);
|
||||
auto process = context->getProcessListElement();
|
||||
auto * process = context->getProcessListElement();
|
||||
if (process)
|
||||
process->updateProgressIn(local_progress);
|
||||
ProfileEvents::increment(ProfileEvents::SelectedRows, local_progress.read_rows);
|
||||
@ -619,7 +619,7 @@ void PushingToWindowViewSink::consume(Chunk chunk)
|
||||
Progress local_progress(chunk.getNumRows(), chunk.bytes(), 0);
|
||||
StorageWindowView::writeIntoWindowView(
|
||||
window_view, getHeader().cloneWithColumns(chunk.detachColumns()), context);
|
||||
auto process = context->getProcessListElement();
|
||||
auto * process = context->getProcessListElement();
|
||||
if (process)
|
||||
process->updateProgressIn(local_progress);
|
||||
ProfileEvents::increment(ProfileEvents::SelectedRows, local_progress.read_rows);
|
||||
|
Loading…
Reference in New Issue
Block a user