2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2017-07-31 21:39:24 +00:00
|
|
|
#include <IO/WriteBufferFromString.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataStreams/TSKVRowOutputStream.h>
|
2015-07-18 04:27:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
TSKVRowOutputStream::TSKVRowOutputStream(WriteBuffer & ostr_, const Block & sample_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: TabSeparatedRowOutputStream(ostr_, sample_)
|
2015-07-18 04:27:38 +00:00
|
|
|
{
|
2017-12-25 21:57:29 +00:00
|
|
|
NamesAndTypesList columns(sample_.getNamesAndTypesList());
|
2017-04-01 07:20:54 +00:00
|
|
|
fields.assign(columns.begin(), columns.end());
|
|
|
|
|
|
|
|
for (auto & field : fields)
|
|
|
|
{
|
2017-07-31 21:39:24 +00:00
|
|
|
WriteBufferFromOwnString wb;
|
|
|
|
writeAnyEscapedString<'='>(field.name.data(), field.name.data() + field.name.size(), wb);
|
|
|
|
writeCString("=", wb);
|
|
|
|
field.name = wb.str();
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-07-18 04:27:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
void TSKVRowOutputStream::writeField(const IColumn & column, const IDataType & type, size_t row_num)
|
2015-07-18 04:27:38 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
writeString(fields[field_number].name, ostr);
|
|
|
|
type.serializeTextEscaped(column, row_num, ostr);
|
|
|
|
++field_number;
|
2015-07-18 04:27:38 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
|
|
|
|
void TSKVRowOutputStream::writeRowEndDelimiter()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
writeChar('\n', ostr);
|
|
|
|
field_number = 0;
|
2016-02-16 16:39:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-18 04:27:38 +00:00
|
|
|
}
|