ClickHouse/dbms/tests/performance/empty_string_deserialization.xml

21 lines
585 B
XML

<test>
<type>loop</type>
<stop_conditions>
<all_of>
<iterations>10</iterations>
</all_of>
</stop_conditions>
<!-- gcc-8 generates 20% faster code than gcc-9
clang-8 generates more than two times slower code than gcc
-->
<create_query>CREATE TABLE empty_strings (s String) ENGINE = Log;</create_query>
<fill_query>INSERT INTO empty_strings SELECT '' FROM numbers(1000000000);</fill_query>
<query>SELECT count() FROM empty_strings</query>
<drop_query>DROP TABLE IF EXISTS empty_strings</drop_query>
</test>