ClickHouse/tests/performance/merge_tree_many_partitions_2.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
811 B
XML
Raw Normal View History

2021-05-20 14:14:55 +00:00
<test>
2019-06-16 20:25:43 +00:00
<settings>
<max_partitions_per_insert_block>0</max_partitions_per_insert_block>
2022-03-03 15:17:14 +00:00
<max_insert_threads>1</max_insert_threads>
<max_memory_usage>20G</max_memory_usage>
2019-06-16 20:25:43 +00:00
</settings>
2022-03-03 15:17:14 +00:00
<create_query>CREATE TABLE bad_partitions (a UInt64, b UInt64, c UInt64, d UInt64, e UInt64, f UInt64, g UInt64, h UInt64, i UInt64, j UInt64, k UInt64, l UInt64, m UInt64, n UInt64, o UInt64, p UInt64, q UInt64, r UInt64, s UInt64, t UInt64, u UInt64, v UInt64, w UInt64, x UInt64, y UInt64, z UInt64) ENGINE = MergeTree PARTITION BY x ORDER BY x</create_query>
<fill_query>INSERT INTO bad_partitions (x) SELECT * FROM numbers_mt(3000)</fill_query>
2019-06-16 20:25:43 +00:00
<query>SELECT sum(ignore(*)) FROM bad_partitions</query>
<drop_query>DROP TABLE IF EXISTS bad_partitions</drop_query>
</test>