mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
35 lines
842 B
Plaintext
35 lines
842 B
Plaintext
-- Negative tests
|
|
-- Tests
|
|
-- Array
|
|
[1,2,3] [4,5,6] 32 UInt16
|
|
[1,2,3] [4,5,6] 32 UInt32
|
|
[1,2,3] [4,5,6] 32 UInt64
|
|
[1,2,3] [4,5,6] 32 UInt64
|
|
[-1,-2,-3] [4,5,6] -32 Int16
|
|
[-1,-2,-3] [4,5,6] -32 Int32
|
|
[-1,-2,-3] [4,5,6] -32 Int64
|
|
[-1,-2,-3] [4,5,6] -32 Int64
|
|
[1,2,3] [4,5,6] 32 Float32
|
|
[1,2,3] [4,5,6] 32 Float64
|
|
-- Tuple
|
|
(1,2,3) (4,5,6) 32 UInt64
|
|
(1,2,3) (4,5,6) 32 UInt64
|
|
(1,2,3) (4,5,6) 32 UInt64
|
|
(1,2,3) (4,5,6) 32 UInt64
|
|
(-1,-2,-3) (4,5,6) -32 Int64
|
|
(-1,-2,-3) (4,5,6) -32 Int64
|
|
(-1,-2,-3) (4,5,6) -32 Int64
|
|
(-1,-2,-3) (4,5,6) -32 Int64
|
|
(1,2,3) (4,5,6) 32 Float64
|
|
(1,2,3) (4,5,6) 32 Float64
|
|
-- Non-const argument
|
|
[1,2,3] [4,5,6] 32 UInt16
|
|
-- Array with mixed element arguments types (result type is the supertype)
|
|
[1,2,3] [4,5,6] 32 Float32
|
|
-- Tuple with mixed element arguments types
|
|
(1,2,3) (4,5,6) 32 Float64
|
|
-- Aliases
|
|
32
|
|
32
|
|
32
|