mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add a test for #13653
This commit is contained in:
parent
1b27c7ebe0
commit
b4d241b54d
4
tests/queries/0_stateless/02468_has_any_tuple.reference
Normal file
4
tests/queries/0_stateless/02468_has_any_tuple.reference
Normal file
@ -0,0 +1,4 @@
|
||||
1
|
||||
1
|
||||
[(3,3)]
|
||||
1
|
4
tests/queries/0_stateless/02468_has_any_tuple.sql
Normal file
4
tests/queries/0_stateless/02468_has_any_tuple.sql
Normal file
@ -0,0 +1,4 @@
|
||||
select [(toUInt8(3), toUInt8(3))] = [(toInt16(3), toInt16(3))];
|
||||
select hasAny([(toInt16(3), toInt16(3))],[(toInt16(3), toInt16(3))]);
|
||||
select arrayFilter(x -> x = (toInt16(3), toInt16(3)), arrayZip([toUInt8(3)], [toUInt8(3)]));
|
||||
select hasAny([(toUInt8(3), toUInt8(3))],[(toInt16(3), toInt16(3))]);
|
Loading…
Reference in New Issue
Block a user