mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
parent
2b439f079e
commit
50e1eedd47
3
tests/queries/0_stateless/02693_multiple_joins_in.sql
Normal file
3
tests/queries/0_stateless/02693_multiple_joins_in.sql
Normal file
@ -0,0 +1,3 @@
|
||||
create temporary table temp_table3(val0 UInt64) ENGINE=Memory();
|
||||
select * from (select 1 as id) t1 inner join (select 1 as id) t2 on t1.id=t2.id inner join (select 1 as id) t3 on t1.id=t3.id where t1.id in temp_table3;
|
||||
select * from (select 1 as id) t1 inner join (select 1 as id) t2 on t1.id=t2.id where t1.id in temp_table3;
|
Loading…
Reference in New Issue
Block a user