2015-01-16 21:07:09 +00:00
|
|
|
SET max_rows_to_group_by = 100000;
|
|
|
|
SET group_by_overflow_mode = 'any';
|
|
|
|
|
|
|
|
SET totals_mode = 'after_having_auto';
|
2018-01-29 10:01:18 +00:00
|
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|
2015-01-16 21:07:09 +00:00
|
|
|
|
|
|
|
SET totals_mode = 'after_having_inclusive';
|
2018-01-29 10:01:18 +00:00
|
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|
2015-01-16 21:07:09 +00:00
|
|
|
|
|
|
|
SET totals_mode = 'after_having_exclusive';
|
2018-01-29 10:01:18 +00:00
|
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|
2015-01-16 21:07:09 +00:00
|
|
|
|
|
|
|
SET totals_mode = 'before_having';
|
2018-01-29 10:01:18 +00:00
|
|
|
SELECT dummy, count() FROM remote('127.0.0.{2,3}', system, one) GROUP BY dummy WITH TOTALS;
|