ClickHouse/tests/performance/columns_hashing.xml

13 lines
859 B
XML
Raw Normal View History

<test max_ignored_relative_change="0.3">
2019-02-05 10:52:23 +00:00
<preconditions>
<table_exists>hits_10m_single</table_exists>
<table_exists>hits_100m_single</table_exists>
2019-02-05 10:52:23 +00:00
</preconditions>
<query>select sum(UserID + 1 in (select UserID from hits_100m_single)) from hits_100m_single</query>
<query>select sum((UserID + 1, RegionID) in (select UserID, RegionID from hits_10m_single)) from hits_10m_single</query>
<query>select sum(URL in (select URL from hits_10m_single where URL != '')) from hits_10m_single</query>
2020-09-21 12:02:34 +00:00
<query>select sum(MobilePhoneModel in (select MobilePhoneModel from hits_100m_single where MobilePhoneModel != '')) from hits_100m_single</query>
<query>select sum((MobilePhoneModel, UserID + 1) in (select MobilePhoneModel, UserID from hits_100m_single where MobilePhoneModel != '')) from hits_100m_single</query>
2019-02-05 10:52:23 +00:00
</test>