blob: 8a4ae1f3b967282b3efefe0c3b55bf5ae06afbc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#pragma once
#include <Processors/Formats/IRowOutputFormat.h>
#include <Formats/FormatFactory.h>
#include <Formats/FormatSettings.h>
namespace DB
{
class ReadBuffer;
class MarkdownRowOutputFormat final : public IRowOutputFormat
{
public:
MarkdownRowOutputFormat(WriteBuffer & out_, const Block & header_, const FormatSettings & format_settings_);
String getName() const override { return "MarkdownRowOutputFormat"; }
private:
/// Write higher part of markdown table like this:
/// |columnName1|columnName2|...|columnNameN|
/// |:-:|:-:|...|:-:|
void writePrefix() override;
/// Write '|' before each row
void writeRowStartDelimiter() override;
/// Write '|' between values
void writeFieldDelimiter() override;
/// Write '|\n' at the end of each row
void writeRowEndDelimiter() override;
void writeField(const IColumn & column, const ISerialization & serialization, size_t row_num) override;
const FormatSettings format_settings;
};
}
|