mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
fafecb3c25
* Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development): removed very old tests #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <DataStreams/IBlockOutputStream.h>
|
|
#include <Formats/IRowOutputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Transforms a stream to write data by rows to a stream to write data by blocks.
|
|
* For example, to write a text dump.
|
|
*/
|
|
class BlockOutputStreamFromRowOutputStream : public IBlockOutputStream
|
|
{
|
|
public:
|
|
BlockOutputStreamFromRowOutputStream(RowOutputStreamPtr row_output_, const Block & header_);
|
|
|
|
Block getHeader() const override { return header; }
|
|
void write(const Block & block) override;
|
|
void writePrefix() override { row_output->writePrefix(); }
|
|
void writeSuffix() override { row_output->writeSuffix(); }
|
|
|
|
void flush() override { row_output->flush(); }
|
|
|
|
void setRowsBeforeLimit(size_t rows_before_limit) override;
|
|
void setTotals(const Block & totals) override;
|
|
void setExtremes(const Block & extremes) override;
|
|
void onProgress(const Progress & progress) override;
|
|
|
|
String getContentType() const override { return row_output->getContentType(); }
|
|
|
|
private:
|
|
RowOutputStreamPtr row_output;
|
|
Block header;
|
|
bool first_row = true;
|
|
};
|
|
|
|
}
|