ClickHouse/dbms/tests/queries/0_stateless/00112_totals_after_having.sql

5 lines
228 B
MySQL
Raw Normal View History

2015-01-19 17:50:55 +00:00
SET totals_mode = 'after_having_auto';
SET max_rows_to_group_by = 100000;
SET group_by_overflow_mode = 'any';
2017-01-13 18:43:43 +00:00
SELECT dummy + 1 AS k, count() FROM remote('localhost,127.0.0.{1,2}', system, one) GROUP BY k WITH TOTALS ORDER BY k;