mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test for LowCardinality defaults
This commit is contained in:
parent
c339313d8b
commit
dc828d462c
@ -0,0 +1,4 @@
|
||||
1
|
||||
1
|
||||
0
|
||||
1
|
@ -0,0 +1,4 @@
|
||||
select CAST(toLowCardinality(val) as UInt64) from (select arrayJoin(['1']) as val);
|
||||
select toUInt64(toLowCardinality(val)) from (select arrayJoin(['1']) as val);
|
||||
select 1 % toLowCardinality(val) from (select arrayJoin([1]) as val);
|
||||
select gcd(1, toLowCardinality(val)) from (select arrayJoin([1]) as val);
|
Loading…
Reference in New Issue
Block a user