ClickHouse/tests/queries/0_stateless/00072_in_types.sql

16 lines
386 B
MySQL
Raw Normal View History

2014-10-06 22:46:18 +00:00
SELECT
-1 IN (-1),
-1 IN (1, -1, 2),
1.0 IN (1),
1.1 IN (1, -1),
1.0 IN (3, 1., -1),
1 IN (3, 2, 1),
toInt16(-1) IN (255),
materialize(-1) IN (-1),
materialize(-1) IN (1, -1, 2),
materialize(1.0) IN (1),
materialize(1.1) IN (1, -1),
materialize(1.0) IN (3, 1., -1),
materialize(1) IN (3, 2, 1),
materialize(toInt16(-1)) IN (255);