Add perf tests with tuples

This commit is contained in:
Raúl Marín 2023-12-29 17:00:01 +01:00
parent fd438cc5b6
commit db97a69989

View File

@ -87,4 +87,9 @@
<query>select any(FromTag) from hits_100m_single where FromTag != '' group by intHash32(UserID) % {group_scale} FORMAT Null</query>
<query>select anyHeavy(FromTag) from hits_100m_single where FromTag != '' group by intHash32(UserID) % {group_scale} FORMAT Null</query>
<!-- Test with tuples (useful when you want to keep 2 columns of the same row) -->
<query>select min((WatchID, CounterID)) from hits_100m_single FORMAT Null</query>
<query>select max((WatchID, CounterID)) from hits_100m_single FORMAT Null</query>
<query>select any((WatchID, CounterID)) from hits_100m_single FORMAT Null</query>
<query>select anyHeavy((WatchID, CounterID)) from hits_100m_single FORMAT Null</query>
</test>