mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
88e37020e0
* Research commit * Created Output EachRow Format * Fixed bugs * Created output format JSONCompactEachRowWithNamesAndTypes without totals * Fixed bugs * Fixed bugs * Totals for JSONCompactEachRowWithNamesAndTypes * Deleted needless debug * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Working commit * Tests added * Input Format for JSONCompactEachRow * Fixed bugs for JSONCompactEachRow Input format * Fixed bugs for JSONCompactEachRowRowInputFormat.cpp * JSONCompactEachRow and JSONCompactEachRowWithNamesAndTypes united * Created input format for both formats * fixed bugs * fixed bugs * Working commit * Working commit * Working commit * Working commit * tests * Working commit * Final tests * Performance tests added
48 lines
664 B
Plaintext
48 lines
664 B
Plaintext
1
|
|
[1, "a"]
|
|
[2, "b"]
|
|
[3, "c"]
|
|
2
|
|
["a", "1"]
|
|
["b", "1"]
|
|
["c", "1"]
|
|
3
|
|
["value", "name"]
|
|
["UInt8", "String"]
|
|
[1, "a"]
|
|
[2, "b"]
|
|
[3, "c"]
|
|
4
|
|
["name", "c"]
|
|
["String", "UInt64"]
|
|
["a", "1"]
|
|
["b", "1"]
|
|
["c", "1"]
|
|
|
|
["", "3"]
|
|
5
|
|
["first", 1, 2, 0]
|
|
["second", 2, 0, 6]
|
|
6
|
|
["first", 1, 2, 8]
|
|
["second", 2, 32, 6]
|
|
7
|
|
[16, [15,16,0], ["first","second","third"]]
|
|
8
|
|
["first", 1, 2, 0]
|
|
["second", 2, 0, 6]
|
|
9
|
|
["first", 1, 2, 8]
|
|
["second", 2, 32, 6]
|
|
10
|
|
["first", 1, 16, 8]
|
|
["second", 2, 32, 8]
|
|
11
|
|
["v1", "v2", "v3", "v4"]
|
|
["String", "UInt8", "UInt16", "UInt8"]
|
|
["", 2, 3, 1]
|
|
12
|
|
["v1", "n.id", "n.name"]
|
|
["UInt8", "Array(UInt8)", "Array(String)"]
|
|
[16, [15,16,0], ["first","second","third"]]
|