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