mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
61 lines
1.3 KiB
C++
61 lines
1.3 KiB
C++
#include <IO/WriteBuffer.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Core/Block.h>
|
|
#include <DataStreams/ODBCDriverBlockOutputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ODBCDriverBlockOutputStream::ODBCDriverBlockOutputStream(WriteBuffer & out_, const Block & header_)
|
|
: out(out_), header(header_)
|
|
{
|
|
}
|
|
|
|
void ODBCDriverBlockOutputStream::flush()
|
|
{
|
|
out.next();
|
|
}
|
|
|
|
void ODBCDriverBlockOutputStream::write(const Block & block)
|
|
{
|
|
const size_t rows = block.rows();
|
|
const size_t columns = block.columns();
|
|
String text_value;
|
|
|
|
for (size_t i = 0; i < rows; ++i)
|
|
{
|
|
for (size_t j = 0; j < columns; ++j)
|
|
{
|
|
text_value.resize(0);
|
|
const ColumnWithTypeAndName & col = block.getByPosition(j);
|
|
|
|
{
|
|
WriteBufferFromString text_out(text_value);
|
|
col.type->serializeText(*col.column, i, text_out);
|
|
}
|
|
|
|
writeStringBinary(text_value, out);
|
|
}
|
|
}
|
|
}
|
|
|
|
void ODBCDriverBlockOutputStream::writePrefix()
|
|
{
|
|
const size_t columns = header.columns();
|
|
|
|
/// Number of columns.
|
|
writeVarUInt(columns, out);
|
|
|
|
/// Names and types of columns.
|
|
for (size_t i = 0; i < columns; ++i)
|
|
{
|
|
const ColumnWithTypeAndName & col = header.getByPosition(i);
|
|
|
|
writeStringBinary(col.name, out);
|
|
writeStringBinary(col.type->getName(), out);
|
|
}
|
|
}
|
|
|
|
}
|