ClickHouse/tests/performance/rand.xml

25 lines
656 B
XML
Raw Normal View History

2020-04-13 09:26:56 +00:00
<test>
<stop_conditions>
<all_of>
2020-05-16 07:01:46 +00:00
<total_time_ms>10000</total_time_ms>
2020-04-13 09:26:56 +00:00
</all_of>
<any_of>
2020-05-16 07:01:46 +00:00
<total_time_ms>20000</total_time_ms>
2020-04-13 09:26:56 +00:00
</any_of>
</stop_conditions>
<substitutions>
<substitution>
<name>table</name>
<values>
2020-05-21 07:40:27 +00:00
<value>zeros(100000000)</value>
2020-04-13 09:26:56 +00:00
</values>
</substitution>
</substitutions>
2020-05-16 07:01:46 +00:00
<query>SELECT count() FROM (SELECT rand() FROM {table}) </query>
<query>SELECT count() FROM (SELECT rand64() FROM {table}) </query>
<query>SELECT count() FROM (SELECT generateUUIDv4() FROM {table}) </query>
2020-04-13 09:26:56 +00:00
</test>