Adapt 00082_quantiles too

This commit is contained in:
Raúl Marín 2024-01-22 18:03:59 +01:00
parent 9069477871
commit 74e012049b

View File

@ -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;