7
7
public enum ClickHouseFormat {
8
8
// start with the most common ones
9
9
RowBinary (true , true , true , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#rowbinary
10
+ RowBinaryWithNames (true , true , true , true , true , RowBinary ), // https://clickhouse.com/docs/en/interfaces/formats/#rowbinarywithnames
10
11
RowBinaryWithNamesAndTypes (true , true , true , true , true , RowBinary ), // https://clickhouse.com/docs/en/interfaces/formats/#rowbinarywithnamesandtypes
11
12
TabSeparated (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#tabseparated
12
13
TabSeparatedRaw (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#tabseparatedraw
14
+ TabSeparatedRawWithNames (true , true , false , true , true , TabSeparated ), // https://clickhouse.com/docs/en/interfaces/formats/#tabseparatedrawwithnames
15
+ TabSeparatedRawWithNamesAndTypes (true , true , false , true , true , TabSeparated ), // https://clickhouse.com/docs/en/interfaces/formats/#tabseparatedrawwithnamesandtypes
13
16
TabSeparatedWithNames (true , true , false , true , true , TabSeparated ), // https://clickhouse.com/docs/en/interfaces/formats/#tabseparatedwithnames
14
17
TabSeparatedWithNamesAndTypes (true , true , false , true , true , TabSeparated ), // https://clickhouse.com/docs/en/interfaces/formats/#tabseparatedwithnamesandtypes
15
18
// and the rest
@@ -23,22 +26,30 @@ public enum ClickHouseFormat {
23
26
CustomSeparated (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#customseparated
24
27
CustomSeparatedIgnoreSpaces (true , true , false , false , true ),
25
28
JSONCompactEachRow (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompacteachrow
29
+ JSONCompactEachRowWithNames (true , true , false , true , true ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompacteachrowwithnames
26
30
JSONCompactEachRowWithNamesAndTypes (true , true , false , true , true ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompacteachrowwithnamesandtypes
27
31
JSON (false , true , false , false , false , JSONCompactEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#json
32
+ JSONAsObject (true , false , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#jsonasobject
28
33
JSONAsString (true , false , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#jsonasstring
29
34
JSONCompact (false , true , false , false , false , JSONCompactEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompact
30
35
JSONCompactStringsEachRow (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompactstringeachrow
36
+ JSONCompactStringsEachRowWithNames (true , true , false , true , true , JSONCompactStringsEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompactstringeachrowwithnames
31
37
JSONCompactStringsEachRowWithNamesAndTypes (true , true , false , true , true , JSONCompactStringsEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompactstringeachrowwithnamesandtypes
32
38
JSONCompactStrings (false , true , false , false , false , JSONCompactStringsEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoncompactstrings
33
39
JSONEachRow (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrow
34
40
JSONEachRowWithProgress (false , true , false , false , true , JSONEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrowwithprogress
41
+ JSONLines (true , true , false , false , true ), // alias of JSONEachRow
42
+ NDJSON (true , true , true , true , true ), // alias of JSONEachRow
35
43
JSONStringsEachRow (true , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#jsonstringseachrow
36
44
JSONStringsEachRowWithProgress (false , true , false , false , true , JSONStringsEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsonstringseachrowwithprogress
37
45
JSONStringEachRow (false , false , false , false , true , JSONStringsEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrow
38
46
JSONStrings (false , true , false , false , false , JSONStringsEachRow ), // https://clickhouse.com/docs/en/interfaces/formats/#jsonstring
39
47
LineAsString (true , false , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#lineasstring
48
+ LineAsStringWithNames (false , true , false , false , true , LineAsString ), // https://clickhouse.com/docs/en/interfaces/formats/#lineasstringwithnames
49
+ LineAsStringWithNamesAndTypes (false , true , false , false , true , LineAsString ), // https://clickhouse.com/docs/en/interfaces/formats/#lineasstringwithnamesandtypes
40
50
Markdown (false , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#lineasstring
41
51
MsgPack (true , true , true , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#msgpack
52
+ MySQLDump (true , false , false , false , true ),
42
53
MySQLWire (false , true , true , false , false ),
43
54
Native (true , true , true , true , false ), // https://clickhouse.com/docs/en/interfaces/formats/#native
44
55
Null (false , true , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#null
@@ -53,13 +64,17 @@ public enum ClickHouseFormat {
53
64
PrettyNoEscapes (false , true , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#prettynoescapes
54
65
PrettySpace (false , true , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#prettyspace
55
66
PrettySpaceNoEscapes (false , true , false , false , false ),
67
+ Prometheus (false , true , false , false , true ), // https://clickhouse.com/docs/en/interfaces/formats/#prometheus
56
68
Protobuf (true , true , true , true , false ), // https://clickhouse.com/docs/en/interfaces/formats/#protobuf
69
+ ProtobufList (true , true , true , true , false ), // https://clickhouse.com/docs/en/interfaces/formats/#protobuflist
57
70
ProtobufSingle (true , true , true , true , false ), // https://clickhouse.com/docs/en/interfaces/formats/#protobufsingle
58
71
RawBLOB (true , true , true , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#rawblob
59
72
Regexp (true , false , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#regexp
60
73
TSKV (true , true , false , false , false ), // https://clickhouse.com/docs/en/interfaces/formats/#tskv
61
74
TSV (true , true , false , false , true ), // alias of TabSeparated
62
75
TSVRaw (true , true , false , false , true ), // alias of TabSeparatedRaw
76
+ TSVRawWithNames (true , true , false , true , true , TSV ), // alias of TabSeparatedRawWithNames
77
+ TSVRawWithNamesAndTypes (true , true , false , true , true , TSV ), // alias of TabSeparatedRawWithNamesAndTypes
63
78
TSVWithNames (true , true , false , true , true , TSV ), // alias of TabSeparatedWithNames
64
79
TSVWithNamesAndTypes (true , true , false , true , true , TSV ), // alias of TabSeparatedWithNamesAndTypes
65
80
Template (true , true , false , true , true ), // https://clickhouse.com/docs/en/interfaces/formats/#template
@@ -109,6 +124,13 @@ public static ClickHouseFormat fromFileName(String file) {
109
124
case "parquet" :
110
125
format = Parquet ;
111
126
break ;
127
+ case "pb" :
128
+ case "proto" :
129
+ format = Protobuf ;
130
+ break ;
131
+ case "sql" :
132
+ format = MySQLDump ;
133
+ break ;
112
134
case "tsv" :
113
135
format = TSV ;
114
136
break ;
0 commit comments