-
Notifications
You must be signed in to change notification settings - Fork 8.3k
DETACH PARTITION vs merges = duplicates #7415
Copy link
Copy link
Closed
Labels
bugConfirmed user-visible misbehaviour in official releaseConfirmed user-visible misbehaviour in official release
Description
test case:
create table test2 Engine=MergeTree ORDER BY number AS SELECT number, toString(rand()) x from numbers(100000000);
alter table test2 detach partition tuple();
detach table test2; attach table test2; -- or just restart clickhouse
alter table test2 attach partition tuple();
select count() from test2;
Expected 100000000, got 200000000
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugConfirmed user-visible misbehaviour in official releaseConfirmed user-visible misbehaviour in official release