ClickHouse/dbms/tests/queries/0_stateless/01047_nullable_rand.sql
2019-12-13 16:10:02 +03:00

10 lines
337 B
SQL

select toTypeName(rand(cast(4 as Nullable(UInt8))));
select toTypeName(randConstant(CAST(4 as Nullable(UInt8))));
select toTypeName(rand(Null));
select toTypeName(randConstant(Null));
select rand(cast(4 as Nullable(UInt8))) * 0;
select randConstant(CAST(4 as Nullable(UInt8))) * 0;
select rand(Null) * 0;
select randConstant(Null) * 0;