ClickHouse/tests/performance/parse_engine_file.xml

37 lines
1.2 KiB
XML
Raw Normal View History

<test max_ignored_relative_change="0.4">
2019-05-23 08:45:47 +00:00
<create_query>CREATE TABLE IF NOT EXISTS table_{format} ENGINE = File({format}) AS test.hits</create_query>
2019-05-24 08:38:49 +00:00
<fill_query>INSERT INTO table_{format} SELECT * FROM test.hits LIMIT 100000</fill_query>
<substitutions>
<substitution>
<name>format</name>
<values>
<value>TabSeparated</value>
<value>TabSeparatedWithNames</value>
<value>TabSeparatedWithNamesAndTypes</value>
<value>CSV</value>
<value>CSVWithNames</value>
<value>Values</value>
<value>JSONEachRow</value>
<value>JSONCompactEachRow</value>
<value>JSONCompactEachRowWithNamesAndTypes</value>
<value>TSKV</value>
<value>RowBinary</value>
<value>Native</value>
2020-01-18 20:10:11 +00:00
<value>Avro</value>
2020-04-12 21:59:28 +00:00
<value>MsgPack</value>
</values>
</substitution>
</substitutions>
<preconditions>
2019-05-23 08:45:47 +00:00
<table_exists>test.hits</table_exists>
</preconditions>
2020-04-15 19:07:50 +00:00
<query>SELECT * FROM table_{format} FORMAT Null</query>
<drop_query>DROP TABLE IF EXISTS table_{format}</drop_query>
</test>