1#pragma once
2#include <Processors/Formats/Impl/JSONEachRowRowOutputFormat.h>
3
4namespace DB
5{
6
7class JSONEachRowWithProgressRowOutputFormat : public JSONEachRowRowOutputFormat
8{
9public:
10 using JSONEachRowRowOutputFormat::JSONEachRowRowOutputFormat;
11
12 void writeRowStartDelimiter() override;
13 void writeRowEndDelimiter() override;
14 void onProgress(const Progress & value) override;
15
16private:
17 Progress progress;
18};
19
20}
21