ClickHouse/tests/performance/aggregation_by_partitions.xml
Nikita Taranov a2c9aeb7c9 stash
2023-01-30 17:10:45 +00:00

14 lines
427 B
XML

<test>
<settings>
<!-- <allow_aggregate_each_partition_independently>1</allow_aggregate_each_partition_independently> -->
</settings>
<create_query>create table t(a UInt32) engine=MergeTree order by tuple() partition by a % 16</create_query>
<fill_query>insert into t select * from numbers_mt(5e7)</fill_query>
<query>select a from t group by a format Null</query>
<drop_query>drop table t</drop_query>
</test>