mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 10:31:57 +00:00
This commit is contained in:
parent
d7827eaf57
commit
d78ab39b4b
@ -0,0 +1 @@
|
||||
10
|
12
tests/queries/0_stateless/03054_analyzer_join_alias.sql
Normal file
12
tests/queries/0_stateless/03054_analyzer_join_alias.sql
Normal 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;
|
Loading…
Reference in New Issue
Block a user