mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
19 lines
860 B
SQL
19 lines
860 B
SQL
set allow_suspicious_low_cardinality_types = 1;
|
|
drop table if exists tab_00718;
|
|
create table tab_00718 (a String, b LowCardinality(UInt32)) engine = MergeTree order by a;
|
|
insert into tab_00718 values ('a', 1);
|
|
select *, toTypeName(b) from tab_00718;
|
|
alter table tab_00718 modify column b UInt32;
|
|
select *, toTypeName(b) from tab_00718;
|
|
alter table tab_00718 modify column b LowCardinality(UInt32);
|
|
select *, toTypeName(b) from tab_00718;
|
|
alter table tab_00718 modify column b StringWithDictionary;
|
|
select *, toTypeName(b) from tab_00718;
|
|
alter table tab_00718 modify column b LowCardinality(UInt32);
|
|
select *, toTypeName(b) from tab_00718;
|
|
alter table tab_00718 modify column b String;
|
|
select *, toTypeName(b) from tab_00718;
|
|
alter table tab_00718 modify column b LowCardinality(UInt32);
|
|
select *, toTypeName(b) from tab_00718;
|
|
drop table if exists tab_00718;
|