mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
19 lines
453 B
XML
19 lines
453 B
XML
<test>
|
|
|
|
|
|
<stop_conditions>
|
|
<all_of>
|
|
<total_time_ms>30000</total_time_ms>
|
|
</all_of>
|
|
</stop_conditions>
|
|
|
|
|
|
<create_query>CREATE TABLE data(k UInt64, v UInt64) ENGINE = MergeTree ORDER BY k</create_query>
|
|
|
|
<fill_query>INSERT INTO data SELECT number, 1 from numbers(10000000)</fill_query>
|
|
|
|
<query tag='count_10M'>SELECT count() FROM data</query>
|
|
|
|
<drop_query>DROP TABLE IF EXISTS data</drop_query>
|
|
</test>
|