blob: 40b7cc2a2684429a5a398b40c381dd88121c7e01 (
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
|
#pragma once
#include <Core/Block.h>
#include <Processors/Formats/Impl/JSONEachRowRowInputFormat.h>
#include <Processors/Formats/ISchemaReader.h>
#include <Formats/FormatSettings.h>
namespace DB
{
class ReadBuffer;
class JSONRowInputFormat final : public JSONEachRowRowInputFormat
{
public:
JSONRowInputFormat(
ReadBuffer & in_,
const Block & header_,
Params params_,
const FormatSettings & format_settings_);
String getName() const override { return "JSONRowInputFormat"; }
private:
void readPrefix() override;
void readSuffix() override;
const bool validate_types_from_metadata;
};
class JSONRowSchemaReader : public ISchemaReader
{
public:
JSONRowSchemaReader(ReadBuffer & in_);
NamesAndTypesList readSchema() override;
bool hasStrictOrderOfColumns() const override { return false; }
};
}
|