mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
|
<test>
|
||
|
<name>roundDown</name>
|
||
|
<type>once</type>
|
||
|
|
||
|
<stop_conditions>
|
||
|
<all_of>
|
||
|
<total_time_ms>10000</total_time_ms>
|
||
|
</all_of>
|
||
|
<any_of>
|
||
|
<average_speed_not_changing_for_ms>5000</average_speed_not_changing_for_ms>
|
||
|
<total_time_ms>20000</total_time_ms>
|
||
|
</any_of>
|
||
|
</stop_conditions>
|
||
|
|
||
|
<main_metric>
|
||
|
<avg_rows_per_second/>
|
||
|
</main_metric>
|
||
|
|
||
|
<query>SELECT count() FROM system.numbers WHERE NOT ignore(roundDuration(rand() % 65536))</query>
|
||
|
<query>SELECT count() FROM system.numbers WHERE NOT ignore(roundDown(rand() % 65536, [0, 1, 10, 30, 60, 120, 180, 240, 300, 600, 1200, 1800, 3600, 7200, 18000, 36000]))</query>
|
||
|
<query>SELECT count() FROM system.numbers WHERE NOT ignore(roundAge(rand() % 100))</query>
|
||
|
<query>SELECT count() FROM system.numbers WHERE NOT ignore(roundDown(rand() % 100, [0, 1, 18, 25, 35, 45, 55]))</query>
|
||
|
<query>SELECT count() FROM system.numbers WHERE NOT ignore(roundDown(rand() % 65536, (SELECT groupArray(number) FROM numbers(65536))))</query>
|
||
|
</test>
|