mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
Merge pull request #33296 from ClickHouse/fix_clang_tidy_3
Fix clang tidy 3
This commit is contained in:
commit
16c36d72b1
@ -236,7 +236,7 @@ InputFormatPtr FormatFactory::getInputFormat(
|
||||
|
||||
static void addExistingProgressToOutputFormat(OutputFormatPtr format, ContextPtr context)
|
||||
{
|
||||
auto element_id = context->getProcessListElement();
|
||||
auto * element_id = context->getProcessListElement();
|
||||
if (element_id)
|
||||
{
|
||||
/// While preparing the query there might have been progress (for example in subscalar subqueries) so add it here
|
||||
|
@ -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