ClickHouse/tests/queries/0_stateless/02338_analyzer_constants_basic.reference
2023-11-11 12:49:33 +03:00

36 lines
601 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)
--
[(1, 1)] Array(Tuple(UInt8, UInt8))
[(1,1)]
NULL Nullable(Nothing)
1 UInt8
\'test\' String
[1, 2, 3] Array(UInt8)
[(1, 1), (1, 1)] Array(Tuple(UInt8, UInt8))
\N 1 test [1,2,3] [(1,1),(1,1)]