mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
0324770773
sed -r -i \ -e 's/SELECT $/SELECT/' \ -e 's/SELECT DISTINCT $/SELECT DISTINCT/' \ -e 's/WITH $/WITH/' \ # zero matches, new test will be added -e 's/ARRAY JOIN $/ARRAY JOIN/' \ -e 's/GROUP BY $/GROUP BY/' \ -e 's/ORDER BY $/ORDER BY/' \ -e 's/LIMIT ([0-9]+) BY $/LIMIT \1 BY/' \ # zero matches, new test will be added tests/queries/*/*.sql \ tests/queries/*/*.reference (With except for tests/queries/0_stateless/00751_default_databasename_for_view.reference)
25 lines
573 B
SQL
25 lines
573 B
SQL
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
|
|
);
|