mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
10 lines
330 B
XML
10 lines
330 B
XML
<test>
|
|
<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' short='1'>SELECT count() FROM data</query>
|
|
|
|
<drop_query>DROP TABLE IF EXISTS data</drop_query>
|
|
</test>
|