mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Updated test. [#CLICKHOUSE-3621]
This commit is contained in:
parent
26f464a4f9
commit
2f0f7eacbf
@ -10,3 +10,11 @@ ab
|
||||
ab
|
||||
ab
|
||||
ab
|
||||
-
|
||||
a LowCardinality(String) LowCardinality(UInt64)
|
||||
a
|
||||
ab
|
||||
c
|
||||
d
|
||||
cb
|
||||
db
|
||||
|
@ -65,5 +65,10 @@ drop table if exists test.lc_fix_str_1;
|
||||
drop table if exists test.lc_null_fix_str_0;
|
||||
drop table if exists test.lc_null_fix_str_1;
|
||||
|
||||
|
||||
select '-';
|
||||
SELECT toLowCardinality('a') AS s, toTypeName(s), toTypeName(length(s)) from system.one;
|
||||
select toLowCardinality('a') as val group by val;
|
||||
select (toLowCardinality('a') as val) || 'b' group by val;
|
||||
select toLowCardinality(z) as val from (select arrayJoin(['c', 'd']) as z) group by val;
|
||||
select (toLowCardinality(z) as val) || 'b' from (select arrayJoin(['c', 'd']) as z) group by val;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user