mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
32 lines
703 B
C++
32 lines
703 B
C++
#pragma once
|
|
|
|
#include <DB/DataStreams/IBlockInputStream.h>
|
|
#include <DB/DataStreams/IRowInputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/** Преобразует поток для чтения данных по блокам в поток для чтения данных по строкам.
|
|
*/
|
|
class RowInputStreamFromBlockInputStream : public IRowInputStream
|
|
{
|
|
public:
|
|
explicit RowInputStreamFromBlockInputStream(BlockInputStreamPtr block_input_);
|
|
|
|
bool read(Row & row) override;
|
|
|
|
void readPrefix() override { block_input->readPrefix(); };
|
|
void readSuffix() override { block_input->readSuffix(); };
|
|
|
|
private:
|
|
BlockInputStreamPtr block_input;
|
|
|
|
size_t pos;
|
|
size_t current_rows;
|
|
Block current_block;
|
|
};
|
|
|
|
}
|