mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
10 lines
337 B
SQL
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;
|