mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
26 lines
726 B
XML
26 lines
726 B
XML
<test>
|
|
|
|
<stop_conditions>
|
|
<any_of>
|
|
<!-- This is only for infinite running query. -->
|
|
<total_time_ms>10000</total_time_ms>
|
|
</any_of>
|
|
</stop_conditions>
|
|
|
|
<substitutions>
|
|
<substitution>
|
|
<name>expr</name>
|
|
<values>
|
|
<value>number</value>
|
|
<value>toUInt32(number)</value>
|
|
<value>toUInt16(number)</value>
|
|
<value>toUInt8(number)</value>
|
|
<value>toInt32(number)</value>
|
|
<value>toFloat64(number)</value>
|
|
</values>
|
|
</substitution>
|
|
</substitutions>
|
|
|
|
<query>SELECT bitCount({expr}) FROM numbers(100000000) FORMAT Null</query>
|
|
</test>
|