2019-02-19 18:41:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Formats/FormatSettings.h>
|
|
|
|
#include <Processors/Formats/Impl/TabSeparatedRowOutputFormat.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/** The stream for outputting data in the TSKV format.
|
|
|
|
* TSKV is similar to TabSeparated, but before every value, its name and equal sign are specified: name=value.
|
|
|
|
* This format is very inefficient.
|
|
|
|
*/
|
|
|
|
class TSKVRowOutputFormat: public TabSeparatedRowOutputFormat
|
|
|
|
{
|
|
|
|
public:
|
2019-08-20 11:17:57 +00:00
|
|
|
TSKVRowOutputFormat(WriteBuffer & out_, const Block & header, FormatFactory::WriteCallback callback, const FormatSettings & format_settings);
|
2019-02-19 18:41:18 +00:00
|
|
|
|
|
|
|
String getName() const override { return "TSKVRowOutputFormat"; }
|
|
|
|
|
|
|
|
void writeField(const IColumn & column, const IDataType & type, size_t row_num) override;
|
|
|
|
void writeRowEndDelimiter() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
NamesAndTypes fields;
|
|
|
|
size_t field_number = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|