mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
25 lines
472 B
C++
25 lines
472 B
C++
#pragma once
|
|
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
|
|
namespace DB
|
|
{
|
|
class DictionaryBlockInputStreamBase : public IBlockInputStream
|
|
{
|
|
protected:
|
|
DictionaryBlockInputStreamBase(size_t rows_count_, size_t max_block_size_);
|
|
|
|
virtual Block getBlock(size_t start, size_t length) const = 0;
|
|
|
|
Block getHeader() const override;
|
|
|
|
private:
|
|
const size_t rows_count;
|
|
const size_t max_block_size;
|
|
size_t next_row = 0;
|
|
|
|
Block readImpl() override;
|
|
};
|
|
|
|
}
|