ClickHouse/tests/queries/0_stateless/01070_alter_with_ttl.sql

13 lines
502 B
MySQL
Raw Normal View History

2020-01-22 19:52:55 +00:00
drop table if exists alter_ttl;
create table alter_ttl(i Int) engine = MergeTree order by i ttl toDate('2020-05-05');
alter table alter_ttl add column s String;
alter table alter_ttl modify column s String ttl toDate('2020-01-01');
show create table alter_ttl;
drop table alter_ttl;
2020-01-23 13:11:06 +00:00
create table alter_ttl(d Date, s String) engine = MergeTree order by d ttl d + interval 1 month;
2020-01-22 19:52:55 +00:00
alter table alter_ttl modify column s String ttl d + interval 1 day;
show create table alter_ttl;
drop table alter_ttl;