mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
dbms: improved checking types in IN [#METR-13087].
This commit is contained in:
parent
49df24d891
commit
82467eca80
@ -1 +1 @@
|
||||
1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0
|
||||
1 1 1 0 1 1 0 1 1 1 0 1 1 0
|
||||
|
@ -5,7 +5,6 @@ SELECT
|
||||
1.1 IN (1, -1),
|
||||
1.0 IN (3, 1., -1),
|
||||
1 IN (3, 2, 1),
|
||||
-1 IN (255),
|
||||
toInt16(-1) IN (255),
|
||||
materialize(-1) IN (-1),
|
||||
materialize(-1) IN (1, -1, 2),
|
||||
@ -13,5 +12,4 @@ SELECT
|
||||
materialize(1.1) IN (1, -1),
|
||||
materialize(1.0) IN (3, 1., -1),
|
||||
materialize(1) IN (3, 2, 1),
|
||||
materialize(-1) IN (255),
|
||||
materialize(toInt16(-1)) IN (255);
|
||||
|
Loading…
Reference in New Issue
Block a user