mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
20 lines
614 B
XML
20 lines
614 B
XML
<test>
|
|
<name>bounding_ratio</name>
|
|
<type>once</type>
|
|
|
|
<stop_conditions>
|
|
<any_of>
|
|
<!-- This is only for infinite running query. -->
|
|
<average_speed_not_changing_for_ms>2000</average_speed_not_changing_for_ms>
|
|
<total_time_ms>10000</total_time_ms>
|
|
</any_of>
|
|
</stop_conditions>
|
|
|
|
<metrics>
|
|
<max_rows_per_second />
|
|
</metrics>
|
|
|
|
<query>SELECT boundingRatio(number, number) FROM system.numbers</query>
|
|
<query>SELECT (argMax(number, number) - argMin(number, number)) / (max(number) - min(number)) FROM system.numbers</query>
|
|
</test>
|