ClickHouse/tests/performance/columns_hashing.xml

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

8 lines
674 B
XML
Raw Normal View History

<test>
2020-09-22 10:25:16 +00:00
<query>select sum(UserID + 1 in (select UserID from hits_10m_single)) from hits_10m_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>