mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
11 lines
462 B
SQL
11 lines
462 B
SQL
SET joined_subquery_requires_alias = 0;
|
|
|
|
select ax, c from (select [1,2] ax, 0 c) array join ax join (select 0 c) using(c);
|
|
select ax, c from (select [3,4] ax, 0 c) join (select 0 c) using(c) array join ax;
|
|
select ax, c from (select [5,6] ax, 0 c) s1 join system.one s2 ON s1.c = s2.dummy array join ax;
|
|
|
|
select ax, c from (select [7,8] ax, 0 c) s1
|
|
join system.one s2 ON s1.c = s2.dummy
|
|
join system.one s3 ON s1.c = s3.dummy
|
|
array join ax; -- { serverError 48 }
|