mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
febc935fa8
This reverts commit d61d489c2e
.
53 lines
1.5 KiB
XML
53 lines
1.5 KiB
XML
<test>
|
|
<name>number_formatting_formats</name>
|
|
<type>loop</type>
|
|
|
|
<create_query>CREATE TABLE IF NOT EXISTS table_{format} (x UInt64) ENGINE = File(`{format}`)</create_query>
|
|
|
|
<stop_conditions>
|
|
<all_of>
|
|
<iterations>5</iterations>
|
|
<min_time_not_changing_for_ms>10000</min_time_not_changing_for_ms>
|
|
</all_of>
|
|
<any_of>
|
|
<iterations>100</iterations>
|
|
<total_time_ms>60000</total_time_ms>
|
|
</any_of>
|
|
</stop_conditions>
|
|
|
|
<main_metric>
|
|
<min_time/>
|
|
</main_metric>
|
|
|
|
<substitutions>
|
|
<substitution>
|
|
<name>format</name>
|
|
<values>
|
|
<value>TabSeparated</value>
|
|
<value>CSV</value>
|
|
<value>Values</value>
|
|
<value>JSON</value>
|
|
<value>JSONCompact</value>
|
|
<value>JSONEachRow</value>
|
|
<value>TSKV</value>
|
|
<value>RowBinary</value>
|
|
<value>Native</value>
|
|
<value>XML</value>
|
|
<value>Parquet</value>
|
|
<value>ODBCDriver2</value>
|
|
<value>Null</value>
|
|
<value>MySQLWire</value>
|
|
</values>
|
|
</substitution>
|
|
</substitutions>
|
|
|
|
<preconditions>
|
|
<table_exists>test.hits</table_exists>
|
|
</preconditions>
|
|
|
|
<query>INSERT INTO table_{format} SELECT number FROM numbers(100000000)</query>
|
|
|
|
<drop_query>DROP TABLE IF EXISTS table_{format}</drop_query>
|
|
|
|
</test>
|