mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
5 lines
218 B
MySQL
5 lines
218 B
MySQL
|
SET totals_mode = 'after_having_auto';
|
||
|
SET max_rows_to_group_by = 100000;
|
||
|
SET group_by_overflow_mode = 'any';
|
||
|
SELECT dummy + 1 AS k, count() FROM remote('127.0.0.{1,2}', system, one) GROUP BY k WITH TOTALS ORDER BY k;
|