ClickHouse/tests/performance/bit_operations_fixed_string.xml

16 lines
877 B
XML
Raw Normal View History

2020-02-14 03:57:03 +00:00
<test>
<preconditions>
2020-06-08 22:13:08 +00:00
<table_exists>test.hits</table_exists>
2020-02-14 03:57:03 +00:00
</preconditions>
2020-06-08 22:13:08 +00:00
<settings>
<max_threads>1</max_threads>
</settings>
<!-- test.hits is too small for a stable test, but there is no ClientIP6 column in hits_100m_single. -->
<query>SELECT count() FROM test.hits WHERE NOT ignore(bitAnd(toFixedString(ClientIP6, 16), IPv6StringToNum('ffff:ffff:ffff:0000:0000:0000:0000:0000')))</query>
<query>SELECT count() FROM test.hits WHERE NOT ignore(bitOr(toFixedString(ClientIP6, 16), IPv6StringToNum('ffff:ffff:ffff:0000:0000:0000:0000:0000')))</query>
<query>SELECT count() FROM test.hits WHERE NOT ignore(bitXor(toFixedString(ClientIP6, 16), IPv6StringToNum('ffff:ffff:ffff:0000:0000:0000:0000:0000')))</query>
<query>SELECT count() FROM test.hits WHERE NOT ignore(bitNot(toFixedString(ClientIP6, 16)))</query>
2020-02-14 03:57:03 +00:00
</test>