mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
25 lines
574 B
MySQL
25 lines
574 B
MySQL
|
SELECT arrayJoin(arrayMap(i -> (i + 1), range(2))) AS index, number
|
||
|
FROM numbers(2)
|
||
|
GROUP BY number
|
||
|
ORDER BY index, number;
|
||
|
|
||
|
SET max_bytes_before_external_group_by = 1;
|
||
|
|
||
|
SELECT arrayJoin(arrayMap(i -> (i + 1), range(2))) AS index, number
|
||
|
FROM numbers(2)
|
||
|
GROUP BY number
|
||
|
ORDER BY index, number;
|
||
|
|
||
|
SET group_by_two_level_threshold = 2;
|
||
|
|
||
|
SELECT count() FROM
|
||
|
(
|
||
|
SELECT
|
||
|
arrayJoin(arrayMap(i -> (i + 1), range(2))) AS index,
|
||
|
number
|
||
|
FROM numbers_mt(100000)
|
||
|
GROUP BY number
|
||
|
ORDER BY index ASC
|
||
|
SETTINGS max_block_size = 100000, max_threads = 2
|
||
|
);
|