mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
19 lines
570 B
SQL
19 lines
570 B
SQL
-- Tags: no-s3-storage
|
|
drop table if exists tp;
|
|
|
|
create table tp (d1 Int32, d2 Int32, eventcnt Int64, projection p (select sum(eventcnt) group by d1)) engine = MergeTree order by (d1, d2);
|
|
|
|
set allow_experimental_projection_optimization = 1, force_optimize_projection = 1;
|
|
|
|
select sum(eventcnt) eventcnt, d1 from tp group by d1;
|
|
|
|
select avg(eventcnt) eventcnt, d1 from tp group by d1;
|
|
|
|
insert into tp values (1, 2, 3);
|
|
|
|
select sum(eventcnt) eventcnt, d1 from tp group by d1;
|
|
|
|
select avg(eventcnt) eventcnt, d1 from tp group by d1; -- { serverError 584 }
|
|
|
|
drop table tp;
|