Imported stateful tests (without data) [#CLICKHOUSE-3]

This commit is contained in:
Alexey Milovidov 2018-08-07 20:10:03 +03:00
parent 3021852383
commit d1a548638f

View File

@ -1,8 +1,10 @@
SET max_bytes_before_external_group_by = 100000000;
SET max_bytes_before_external_group_by = 200000000;
SET max_memory_usage = 1000000000;
SET max_threads = 12;
SELECT URL, uniq(SearchPhrase) AS u FROM test.hits GROUP BY URL ORDER BY u DESC, URL LIMIT 10;
SET max_memory_usage = 300000000;
SET aggregation_memory_efficient_merge_threads = 1;
SET max_threads = 2;
SET aggregation_memory_efficient_merge_threads = 1;
SELECT URL, uniq(SearchPhrase) AS u FROM test.hits GROUP BY URL ORDER BY u DESC, URL LIMIT 10;