mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 03:22:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
41 lines
1015 B
C++
41 lines
1015 B
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <IO/WriteBuffer.h>
|
|
#include <Processors/Formats/IRowOutputFormat.h>
|
|
#include <Formats/FormatSettings.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** The stream for outputting data in JSON format, by object per line.
|
|
* Does not validate UTF-8.
|
|
*/
|
|
class JSONEachRowRowOutputFormat : public IRowOutputFormat
|
|
{
|
|
public:
|
|
JSONEachRowRowOutputFormat(WriteBuffer & out_, const Block & header_, FormatFactory::WriteCallback callback, const FormatSettings & settings_);
|
|
|
|
String getName() const override { return "JSONEachRowRowOutputFormat"; }
|
|
|
|
void writeField(const IColumn & column, const IDataType & type, size_t row_num) override;
|
|
void writeFieldDelimiter() override;
|
|
void writeRowStartDelimiter() override;
|
|
void writeRowEndDelimiter() override;
|
|
|
|
protected:
|
|
/// No totals and extremes.
|
|
void consumeTotals(Chunk) override {}
|
|
void consumeExtremes(Chunk) override {}
|
|
|
|
size_t field_number = 0;
|
|
|
|
private:
|
|
Names fields;
|
|
|
|
FormatSettings settings;
|
|
};
|
|
|
|
}
|