mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
99 lines
4.6 KiB
SQL
99 lines
4.6 KiB
SQL
drop table if exists ttl_00933_1;
|
|
|
|
create table ttl_00933_1 (d DateTime, a Int ttl d + interval 1 second, b Int ttl d + interval 1 second) engine = MergeTree order by tuple() partition by toMinute(d);
|
|
insert into ttl_00933_1 values (now(), 1, 2);
|
|
insert into ttl_00933_1 values (now(), 3, 4);
|
|
select sleep(1.1) format Null;
|
|
optimize table ttl_00933_1 final;
|
|
select a, b from ttl_00933_1;
|
|
|
|
drop table if exists ttl_00933_1;
|
|
|
|
create table ttl_00933_1 (d DateTime, a Int, b Int) engine = MergeTree order by toDate(d) partition by tuple() ttl d + interval 1 second;
|
|
insert into ttl_00933_1 values (now(), 1, 2);
|
|
insert into ttl_00933_1 values (now(), 3, 4);
|
|
insert into ttl_00933_1 values (now() + 1000, 5, 6);
|
|
optimize table ttl_00933_1 final; -- check ttl merge for part with both expired and unexpired values
|
|
select sleep(1.1) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select a, b from ttl_00933_1;
|
|
|
|
drop table if exists ttl_00933_1;
|
|
|
|
create table ttl_00933_1 (d DateTime, a Int ttl d + interval 1 DAY) engine = MergeTree order by tuple() partition by toDayOfMonth(d);
|
|
insert into ttl_00933_1 values (toDateTime('2000-10-10 00:00:00'), 1);
|
|
insert into ttl_00933_1 values (toDateTime('2000-10-10 00:00:00'), 2);
|
|
insert into ttl_00933_1 values (toDateTime('2000-10-10 00:00:00'), 3);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1 order by d;
|
|
|
|
drop table if exists ttl_00933_1;
|
|
|
|
create table ttl_00933_1 (d DateTime, a Int) engine = MergeTree order by tuple() partition by tuple() ttl d + interval 1 day;
|
|
insert into ttl_00933_1 values (toDateTime('2000-10-10 00:00:00'), 1);
|
|
insert into ttl_00933_1 values (toDateTime('2000-10-10 00:00:00'), 2);
|
|
insert into ttl_00933_1 values (toDateTime('2100-10-10 00:00:00'), 3);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1 order by d;
|
|
|
|
drop table if exists ttl_00933_1;
|
|
|
|
create table ttl_00933_1 (d Date, a Int) engine = MergeTree order by a partition by toDayOfMonth(d) ttl d + interval 1 day;
|
|
insert into ttl_00933_1 values (toDate('2000-10-10'), 1);
|
|
insert into ttl_00933_1 values (toDate('2100-10-10'), 2);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1 order by d;
|
|
|
|
-- const DateTime TTL positive
|
|
drop table if exists ttl_00933_1;
|
|
create table ttl_00933_1 (b Int, a Int ttl now()-1000) engine = MergeTree order by tuple() partition by tuple();
|
|
show create table ttl_00933_1;
|
|
insert into ttl_00933_1 values (1, 1);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1;
|
|
|
|
-- const DateTime TTL negative
|
|
drop table if exists ttl_00933_1;
|
|
create table ttl_00933_1 (b Int, a Int ttl now()+1000) engine = MergeTree order by tuple() partition by tuple();
|
|
show create table ttl_00933_1;
|
|
insert into ttl_00933_1 values (1, 1);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1;
|
|
|
|
-- const Date TTL positive
|
|
drop table if exists ttl_00933_1;
|
|
create table ttl_00933_1 (b Int, a Int ttl today()-1) engine = MergeTree order by tuple() partition by tuple();
|
|
show create table ttl_00933_1;
|
|
insert into ttl_00933_1 values (1, 1);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1;
|
|
|
|
-- const Date TTL negative
|
|
drop table if exists ttl_00933_1;
|
|
create table ttl_00933_1 (b Int, a Int ttl today()+1) engine = MergeTree order by tuple() partition by tuple();
|
|
show create table ttl_00933_1;
|
|
insert into ttl_00933_1 values (1, 1);
|
|
select sleep(0.7) format Null; -- wait if very fast merge happen
|
|
optimize table ttl_00933_1 final;
|
|
select * from ttl_00933_1;
|
|
|
|
set send_logs_level = 'none';
|
|
|
|
drop table if exists ttl_00933_1;
|
|
|
|
create table ttl_00933_1 (d DateTime ttl d) engine = MergeTree order by tuple() partition by toSecond(d); -- { serverError 44}
|
|
create table ttl_00933_1 (d DateTime, a Int ttl d) engine = MergeTree order by a partition by toSecond(d); -- { serverError 44}
|
|
create table ttl_00933_1 (d DateTime, a Int ttl 2 + 2) engine = MergeTree order by tuple() partition by toSecond(d); -- { serverError 450 }
|
|
create table ttl_00933_1 (d DateTime, a Int ttl d - d) engine = MergeTree order by tuple() partition by toSecond(d); -- { serverError 450 }
|
|
|
|
create table ttl_00933_1 (d DateTime, a Int ttl d + interval 1 day) engine = Log; -- { serverError 36 }
|
|
create table ttl_00933_1 (d DateTime, a Int) engine = Log ttl d + interval 1 day; -- { serverError 36 }
|
|
|
|
drop table if exists ttl_00933_1;
|