ClickHouse/tests/queries/1_stateful/00147_global_in_aggregate_function.sql
2021-09-12 17:15:28 +03:00

5 lines
244 B
SQL

-- Tags: global
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);