mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Adapt 00082_quantiles too
This commit is contained in:
parent
9069477871
commit
74e012049b
@ -1,3 +1,6 @@
|
||||
-- The test uses quite a bit of memory. A low max_bytes_before_external_group_by value will lead to high disk usage
|
||||
-- which in CI leads to timeouts
|
||||
SET max_bytes_before_external_group_by=0;
|
||||
SELECT CounterID AS k, quantileExact(0.5)(ResolutionWidth) FROM test.hits GROUP BY k ORDER BY count() DESC, CounterID LIMIT 10;
|
||||
SELECT CounterID AS k, quantilesExact(0.1, 0.5, 0.9, 0.99, 0.999)(ResolutionWidth) FROM test.hits GROUP BY k ORDER BY count() DESC, CounterID LIMIT 10;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user