dbms: improved checking types in IN [#METR-13087].

This commit is contained in:
Alexey Milovidov 2014-10-08 02:19:48 +04:00
parent 49df24d891
commit 82467eca80
2 changed files with 1 additions and 3 deletions

View File

@ -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

View File

@ -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);