mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 19:42:00 +00:00
36 lines
611 B
Plaintext
36 lines
611 B
Plaintext
1 UInt8
|
|
1
|
|
--
|
|
\'test\' String
|
|
test
|
|
--
|
|
1 UInt8
|
|
\'test\' String
|
|
1 test
|
|
--
|
|
1 UInt8
|
|
\'test\' String
|
|
[1, 2, 3] Array(UInt8)
|
|
1 test [1,2,3]
|
|
--
|
|
1 UInt8
|
|
\'test\' String
|
|
[1, 2, 3] Array(UInt8)
|
|
[\'1\', \'2\', \'3\'] Array(String)
|
|
1 test [1,2,3] ['1','2','3']
|
|
--
|
|
NULL Nullable(Nothing)
|
|
\N
|
|
--
|
|
(1, 1) Tuple(UInt8, UInt8)
|
|
(1,1)
|
|
--
|
|
array((1, 1)) Array(Tuple(UInt8, UInt8))
|
|
[(1,1)]
|
|
NULL Nullable(Nothing)
|
|
1 UInt8
|
|
\'test\' String
|
|
[1, 2, 3] Array(UInt8)
|
|
array((1, 1), (1, 1)) Array(Tuple(UInt8, UInt8))
|
|
\N 1 test [1,2,3] [(1,1),(1,1)]
|