2019-08-01 11:10:42 +00:00
|
|
|
drop table if exists ttl;
|
|
|
|
|
2020-11-15 02:24:47 +00:00
|
|
|
create table ttl (d Date, a Int) engine = MergeTree order by a partition by toDayOfMonth(d) settings remove_empty_parts = 0;
|
2019-08-01 11:10:42 +00:00
|
|
|
insert into ttl values (toDateTime('2000-10-10 00:00:00'), 1);
|
|
|
|
insert into ttl values (toDateTime('2000-10-10 00:00:00'), 2);
|
|
|
|
insert into ttl values (toDateTime('2100-10-10 00:00:00'), 3);
|
|
|
|
insert into ttl values (toDateTime('2100-10-10 00:00:00'), 4);
|
|
|
|
|
|
|
|
alter table ttl modify ttl d + interval 1 day;
|
|
|
|
|
|
|
|
select sleep(1) format Null; -- wait if very fast merge happen
|
|
|
|
optimize table ttl partition 10 final;
|
|
|
|
|
|
|
|
select * from ttl order by d;
|
|
|
|
|
|
|
|
drop table if exists ttl;
|