mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
19 lines
312 B
C++
19 lines
312 B
C++
|
#pragma once
|
||
|
#include <Core/Types.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class ISource;
|
||
|
class Chunk;
|
||
|
|
||
|
void updateRowsProgressApprox(
|
||
|
ISource & source,
|
||
|
const Chunk & chunk,
|
||
|
UInt64 total_result_size,
|
||
|
UInt64 & total_rows_approx_accumulated,
|
||
|
size_t & total_rows_count_times,
|
||
|
UInt64 & total_rows_approx_max);
|
||
|
|
||
|
}
|