ClickHouse/dbms/tests/performance/trim_numbers.xml
2019-07-28 00:17:44 +03:00

34 lines
937 B
XML

<test>
<type>loop</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>
<min_time/>
</main_metric>
<substitutions>
<substitution>
<name>func</name>
<values>
<value>trim(</value>
<value>ltrim(</value>
<value>rtrim(</value>
<value>trim(LEADING '012345' FROM </value>
<value>trim(TRAILING '012345' FROM </value>
<value>trim(BOTH '012345' FROM </value>
</values>
</substitution>
</substitutions>
<query>SELECT count() FROM numbers(10000000) WHERE NOT ignore({func}toString(number)))</query>
</test>