не появяилось случайно?
да всегда был. create table S (A Int64, D date) Engine=MergeTree partition by D order by A; insert into S values(1, '2020-01-01'); create table D (A Int64, D date) Engine=ReplacingMergeTree partition by D order by A; alter table D attach partition '2020-01-01' from S; select * from D ┌─A─┬──────────D─┐ │ 1 │ 2020-01-01 │ └───┴────────────┘ rename table S to old_s, D to S; show create table S; .... ENGINE = ReplacingMergeTree
Обсуждают сегодня