mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
37 lines
626 B
C++
37 lines
626 B
C++
#pragma once
|
|
|
|
#include <DB/IO/ReadBuffer.h>
|
|
#include <DB/IO/WriteBuffer.h>
|
|
#include <DB/IO/ReadHelpers.h>
|
|
#include <DB/IO/WriteHelpers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/// Прогресс выполнения запроса
|
|
struct Progress
|
|
{
|
|
size_t rows; /// Строк обработано.
|
|
size_t bytes; /// Байт обработано.
|
|
|
|
Progress() : rows(0), bytes(0) {}
|
|
Progress(size_t rows_, size_t bytes_) : rows(rows_), bytes(bytes_) {}
|
|
|
|
void read(ReadBuffer & in)
|
|
{
|
|
readVarUInt(rows, in);
|
|
readVarUInt(bytes, in);
|
|
}
|
|
|
|
void write(WriteBuffer & out)
|
|
{
|
|
writeVarUInt(rows, out);
|
|
writeVarUInt(bytes, out);
|
|
}
|
|
};
|
|
|
|
|
|
}
|