ClickHouse/dbms/tests/performance/base64.xml
Alexander Kuzmenkov 74d7d95d34 fixup
2020-03-03 15:01:25 +03:00

35 lines
1.1 KiB
XML

<test>
<type>loop</type>
<stop_conditions>
<all_of>
<total_time_ms>10000</total_time_ms>
</all_of>
<any_of>
<total_time_ms>20000</total_time_ms>
</any_of>
</stop_conditions>
<substitutions>
<substitution>
<name>string</name>
<values>
<value>materialize('Hello, world!')</value>
<value>materialize('This is a long string to test ClickHouse base64 functions impl..')</value>
<value>toString(number)</value>
</values>
</substitution>
<substitution>
<name>table</name>
<values>
<value>numbers(10000000)</value>
</values>
</substitution>
</substitutions>
<query>SELECT count() FROM {table} WHERE NOT ignore(base64Encode({string}))</query>
<query>SELECT count() FROM {table} WHERE base64Decode(base64Encode({string})) != {string}</query>
<query>SELECT count() FROM {table} WHERE tryBase64Decode(base64Encode({string})) != {string}</query>
</test>