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
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
#include <Core/Block.h>
|
|
#include <Formats/BlockOutputStreamFromRowOutputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
BlockOutputStreamFromRowOutputStream::BlockOutputStreamFromRowOutputStream(RowOutputStreamPtr row_output_, const Block & header_)
|
|
: row_output(row_output_), header(header_) {}
|
|
|
|
|
|
void BlockOutputStreamFromRowOutputStream::write(const Block & block)
|
|
{
|
|
size_t rows = block.rows();
|
|
size_t columns = block.columns();
|
|
|
|
for (size_t i = 0; i < rows; ++i)
|
|
{
|
|
if (!first_row)
|
|
row_output->writeRowBetweenDelimiter();
|
|
first_row = false;
|
|
|
|
row_output->writeRowStartDelimiter();
|
|
|
|
for (size_t j = 0; j < columns; ++j)
|
|
{
|
|
if (j != 0)
|
|
row_output->writeFieldDelimiter();
|
|
|
|
auto & col = block.getByPosition(j);
|
|
row_output->writeField(*col.column, *col.type, i);
|
|
}
|
|
|
|
row_output->writeRowEndDelimiter();
|
|
}
|
|
}
|
|
|
|
|
|
void BlockOutputStreamFromRowOutputStream::setRowsBeforeLimit(size_t rows_before_limit)
|
|
{
|
|
row_output->setRowsBeforeLimit(rows_before_limit);
|
|
}
|
|
|
|
void BlockOutputStreamFromRowOutputStream::setTotals(const Block & totals)
|
|
{
|
|
row_output->setTotals(totals);
|
|
}
|
|
|
|
void BlockOutputStreamFromRowOutputStream::setExtremes(const Block & extremes)
|
|
{
|
|
row_output->setExtremes(extremes);
|
|
}
|
|
|
|
void BlockOutputStreamFromRowOutputStream::onProgress(const Progress & progress)
|
|
{
|
|
row_output->onProgress(progress);
|
|
}
|
|
|
|
}
|