ClickHouse/tests/performance/ascii.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
1.3 KiB
XML
Raw Normal View History

2024-03-20 10:59:22 +00:00
<test>
<query>select substringUTF8(materialize('hello world'), 2, 5) from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select substringUTF8(materialize('hello 世界'), 2, 5) from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
<query>select substringIndexUTF8(materialize('www.clickhouse.com'), '.', 2) from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select substringIndexUTF8(materialize('官网www.clickhouse.com'), '.', 2) from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
<query>select reverseUTF8(materialize('hello world')) from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select reverseUTF8(materialize('hello 世界')) from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
<query>select lowerUTF8(materialize('hello world')) from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select lowerUTF8(materialize('hello 世界')) from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
<query>select upperUTF8(materialize('hello world')) from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select upperUTF8(materialize('hello 世界')) from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
<query>select leftPadUTF8(materialize('hello '), 10, ',') from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select leftPadUTF8(materialize('hello '), 10, '世界') from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
<query>select rightPadUTF8(materialize('hello '), 10, ',') from numbers(10000000)</query>
2024-03-21 02:29:35 +00:00
<query>select rightPadUTF8(materialize('hello '), 10, '世界') from numbers(10000000)</query>
2024-03-20 10:59:22 +00:00
</test>