Backport #70453 to 24.8: Fix order in 03249_dynamic_alter_consistency

This commit is contained in:
robot-clickhouse 2024-10-15 16:07:58 +00:00
parent 185337a8e2
commit 8205842c39
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
600000 UInt64 false
400000 String true
600000 UInt64 false

View File

@ -4,6 +4,6 @@ drop table if exists test;
create table test (d Dynamic) engine=MergeTree order by tuple() settings min_rows_for_wide_part=1, min_bytes_for_wide_part=1;
insert into test select number < 600000 ? number::Dynamic : ('str_' || number)::Dynamic from numbers(1000000);
alter table test modify column d Dynamic(max_types=1);
select count(), dynamicType(d), isDynamicElementInSharedData(d) from test group by dynamicType(d), isDynamicElementInSharedData(d);
select count(), dynamicType(d), isDynamicElementInSharedData(d) from test group by dynamicType(d), isDynamicElementInSharedData(d) order by count();
drop table test;