mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
███████████: more info.
This commit is contained in:
parent
57e0a3a25a
commit
4c8f946f70
@ -36,13 +36,21 @@ public:
|
||||
compressed_bytes += compressed_size;
|
||||
}
|
||||
|
||||
/// Объём данных, которые были сжаты
|
||||
size_t getCompressedBytes()
|
||||
{
|
||||
nextIfAtEnd();
|
||||
return compressed_bytes;
|
||||
}
|
||||
|
||||
/// Сколько несжатых байт было записано в буфер
|
||||
size_t getUncompressedBytes()
|
||||
{
|
||||
return count();
|
||||
}
|
||||
|
||||
/// Сколько байт находится в буфере (ещё не сжато)
|
||||
size_t getRemainingBytes()
|
||||
{
|
||||
nextIfAtEnd();
|
||||
return pos - internal_buffer;
|
||||
|
Loading…
Reference in New Issue
Block a user