mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
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 48 }
|
|
SELECT 1 AS n WITH ROLLUP; -- { serverError 48 }
|
|
SELECT 1 AS n WITH CUBE; -- { serverError 48 }
|