mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
7 lines
260 B
SQL
Executable File
7 lines
260 B
SQL
Executable File
SELECT 11 AS n GROUP BY n WITH TOTALS;
|
|
SELECT 12 AS n GROUP BY n WITH ROLLUP;
|
|
SELECT 13 AS n GROUP BY n WITH CUBE;
|
|
SELECT 1 AS n WITH TOTALS; -- { serverError 49 }
|
|
SELECT 1 AS n WITH ROLLUP; -- { serverError 49 }
|
|
SELECT 1 AS n WITH CUBE; -- { serverError 49 }
|