2019-12-13 13:10:02 +00:00
|
|
|
select toTypeName(rand(cast(4 as Nullable(UInt8))));
|
2022-11-17 10:17:27 +00:00
|
|
|
select toTypeName(randCanonical(CAST(4 as Nullable(UInt8))));
|
2019-12-13 13:10:02 +00:00
|
|
|
select toTypeName(randConstant(CAST(4 as Nullable(UInt8))));
|
|
|
|
select toTypeName(rand(Null));
|
2022-11-17 10:17:27 +00:00
|
|
|
select toTypeName(randCanonical(Null));
|
2019-12-13 13:10:02 +00:00
|
|
|
select toTypeName(randConstant(Null));
|
|
|
|
|
|
|
|
select rand(cast(4 as Nullable(UInt8))) * 0;
|
2022-11-17 10:17:27 +00:00
|
|
|
select randCanonical(cast(4 as Nullable(UInt8))) * 0;
|
2019-12-13 13:10:02 +00:00
|
|
|
select randConstant(CAST(4 as Nullable(UInt8))) * 0;
|
|
|
|
select rand(Null) * 0;
|
2022-11-17 10:17:27 +00:00
|
|
|
select randCanonical(Null) * 0;
|
2019-12-13 13:10:02 +00:00
|
|
|
select randConstant(Null) * 0;
|