ClickHouse/tests/queries/0_stateless/02708_dotProduct.reference

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-02-20 20:09:54 +00:00
-- 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
2024-03-08 14:02:34 +00:00
[] [] 0 Float32
[] [] 0 UInt16
2024-02-20 20:09:54 +00:00
-- 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
2024-03-08 14:02:34 +00:00
[] [] 0 Float32
[] [] 0 UInt16
2024-02-20 20:09:54 +00:00
-- 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
2024-03-06 15:26:11 +00:00
-- Tests that trigger special paths
2024-03-08 14:02:34 +00:00
-- non-const / non-const
2024-03-06 15:26:11 +00:00
0 61
1 186
2024-03-08 14:02:34 +00:00
0 61
1 186
0 61
1 186
-- const / non-const
0 62
1 187
2024-03-06 15:26:11 +00:00
0 62
1 187
0 62
1 187