ClickHouse/tests/queries/0_stateless/01069_insert_float_as_nullable_unit8.sql

8 lines
179 B
MySQL
Raw Normal View History

2020-01-20 19:43:57 +00:00
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;