mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Add perf tests with tuples
This commit is contained in:
parent
fd438cc5b6
commit
db97a69989
@ -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 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>
|
<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>
|
</test>
|
||||||
|
Loading…
Reference in New Issue
Block a user