Added a test from Zlobober #5610

This commit is contained in:
Alexey Milovidov 2020-01-20 22:43:57 +03:00
parent 33e6593e3c
commit e4ff88a604
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,7 @@
create temporary table t1 (a Nullable(UInt8));
insert into t1 values (2.4);
select * from t1;
create temporary table t2 (a UInt8);
insert into t2 values (2.4);
select * from t2;