mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
17 lines
621 B
SQL
17 lines
621 B
SQL
-- Tags: shard
|
|
|
|
SET max_rows_to_group_by = 100000;
|
|
SET group_by_overflow_mode = 'any';
|
|
|
|
SET totals_mode = 'after_having_auto';
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|
|
|
|
SET totals_mode = 'after_having_inclusive';
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|
|
|
|
SET totals_mode = 'after_having_exclusive';
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|
|
|
|
SET totals_mode = 'before_having';
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|