blob: 9a0a43aa5bbf2d0f7c687a1a4df614f3d3b084ef (
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
41
42
43
44
45
|
#pragma once
#include <string>
#include <Core/Block.h>
#include <Processors/Formats/IOutputFormat.h>
#include <Formats/FormatSettings.h>
namespace DB
{
class WriteBuffer;
/** A data format designed to simplify the implementation of the ODBC driver.
* ODBC driver is designed to be build for different platforms without dependencies from the main code,
* so the format is made that way so that it can be as easy as possible to parse it.
* A header is displayed with the required information.
* The data is then output in the order of the rows. Each value is displayed as follows: length in Int32 format (-1 for NULL), then data in text form.
*/
class ODBCDriver2BlockOutputFormat final : public IOutputFormat
{
public:
ODBCDriver2BlockOutputFormat(WriteBuffer & out_, const Block & header_, const FormatSettings & format_settings_);
String getName() const override { return "ODBCDriver2BlockOutputFormat"; }
std::string getContentType() const override
{
return "application/octet-stream";
}
private:
void consume(Chunk) override;
void consumeTotals(Chunk) override;
void writePrefix() override;
const FormatSettings format_settings;
Serializations serializations;
void writeRow(const Columns & columns, size_t row_idx, std::string & buffer);
void write(Chunk chunk, PortKind port_kind);
};
}
|