ClickHouse/tests/queries/0_stateless/01280_ttl_where_group_by.sql

45 lines
2.2 KiB
MySQL
Raw Normal View History

2020-05-14 10:48:45 +00:00
drop table if exists ttl_01246_1;
create table ttl_01246_1 (a Int, b Int, x Int, y Int, d DateTime) engine = MergeTree order by (a, b) ttl d + interval 1 second delete where x % 10 == 0 and y > 5;
insert into ttl_01246_1 values (1, 1, 0, 4, now() + 10);
insert into ttl_01246_1 values (1, 1, 10, 6, now());
insert into ttl_01246_1 values (1, 2, 3, 7, now());
insert into ttl_01246_1 values (1, 3, 0, 5, now());
insert into ttl_01246_1 values (2, 1, 20, 1, now());
insert into ttl_01246_1 values (2, 1, 0, 1, now());
insert into ttl_01246_1 values (3, 1, 0, 8, now());
select sleep(1.1) format Null;
optimize table ttl_01246_1 final;
select a, b, x, y from ttl_01246_1;
drop table if exists ttl_01246_1;
create table ttl_01246_1 (a Int, b Int, x Int32, y Double, d DateTime) engine = MergeTree order by (a, b) ttl d + interval 1 second group by a, b set x = cast(median(x) as Int32), y = avg(y), d = max(d);
insert into ttl_01246_1 values (1, 1, 0, 4, now() + 10);
insert into ttl_01246_1 values (1, 1, 10, 6, now());
2020-05-14 14:07:36 +00:00
insert into ttl_01246_1 values (1, 1, 3, 7, now());
2020-05-14 10:48:45 +00:00
insert into ttl_01246_1 values (1, 3, 0, 5, now());
2020-05-14 14:07:36 +00:00
insert into ttl_01246_1 values (1, 3, 4, 9, now());
insert into ttl_01246_1 values (1, 3, 6, 3, now());
insert into ttl_01246_1 values (2, 1, 20, 7, now());
2020-05-14 10:48:45 +00:00
insert into ttl_01246_1 values (2, 1, 0, 1, now());
insert into ttl_01246_1 values (3, 1, 0, 8, now());
select sleep(1.1) format Null;
optimize table ttl_01246_1 final;
select a, b, x, y from ttl_01246_1;
drop table if exists ttl_01246_1;
create table ttl_01246_1 (a Int, b Int, x Int32, y Int, d DateTime) engine = MergeTree order by (a, b) ttl d + interval 1 second group by a set x = max(x), y = cast(round(avg(y)) as Int), d = max(d);
insert into ttl_01246_1 values (1, 1, 0, 4, now() + 10);
insert into ttl_01246_1 values (1, 1, 10, 6, now());
insert into ttl_01246_1 values (1, 2, 3, 7, now());
insert into ttl_01246_1 values (1, 3, 0, 5, now());
insert into ttl_01246_1 values (2, 1, 20, 1, now());
2020-05-14 14:07:36 +00:00
insert into ttl_01246_1 values (2, 1, 0, 3, now());
insert into ttl_01246_1 values (3, 1, 0, 3, now());
insert into ttl_01246_1 values (3, 2, 8, 2, now());
insert into ttl_01246_1 values (3, 5, 5, 8, now());
2020-05-14 10:48:45 +00:00
select sleep(1.1) format Null;
optimize table ttl_01246_1 final;
select a, b, x, y from ttl_01246_1;