Nikita Fomichev 2024-04-03 09:52:38 +02:00
parent d7827eaf57
commit d78ab39b4b
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1 @@
10

View File

@ -0,0 +1,12 @@
-- https://github.com/ClickHouse/ClickHouse/issues/21584
SELECT count()
FROM
(
SELECT number AS key_1
FROM numbers(15)
) AS x
ALL INNER JOIN
(
SELECT number AS key_1
FROM numbers(10)
) AS z ON key_1 = z.key_1;