ClickHouse/tests/queries/1_stateful/00147_global_in_aggregate_function.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
279 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: global
2024-07-24 02:32:20 +00:00
SET max_rows_to_read = 40_000_000;
SELECT sum(UserID GLOBAL IN (SELECT UserID FROM remote('127.0.0.{1,2}', test.hits))) FROM remote('127.0.0.{1,2}', test.hits);
SELECT sum(UserID GLOBAL IN (SELECT UserID FROM test.hits)) FROM remote('127.0.0.{1,2}', test.hits);