Added test for join on syntax. [#CLICKHOUSE-3761]

This commit is contained in:
Nikolai Kochetov 2018-07-27 18:54:05 +03:00
parent 5123e0f86f
commit a2cd7016e5
2 changed files with 137 additions and 0 deletions

View File

@ -0,0 +1,53 @@
joind columns from right table
1
1 2
1 2
1 3
1 2 3
join on expression
2
2 2
2 3
1
2
1 2 2 3
1 2 2 3 3
1 2 2 3
join on and chain
2 3
2 3
2 3 2 3
1
1 3
1 2 2 3
2 4
join on aliases
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
1 2 2 3
join on complex expression
2 3
2 3
2 3
2 3
2 3
duplicate column names
{"a1":1,"test.tab1_copy.a1":2}
{"a1":1,"test.tab1_copy.a1":2}
{"a1":1,"copy.a1":2}
{"a1":1,"copy.a1":2}
{"a1":1,"copy.a1":2}

View File

@ -0,0 +1,84 @@
drop table if exists test.tab1;
drop table if exists test.tab2;
drop table if exists test.tab3;
drop table if exists test.tab1_copy;
create table test.tab1 (a1 Int32, b1 Int32) engine = MergeTree order by a1;
create table test.tab2 (a2 Int32, b2 Int32) engine = MergeTree order by a2;
create table test.tab3 (a3 Int32, b3 Int32) engine = MergeTree order by a3;
create table test.tab1_copy (a1 Int32, b1 Int32) engine = MergeTree order by a1;
insert into test.tab1 values (1, 2);
insert into test.tab2 values (2, 3);
insert into test.tab3 values (2, 3);
insert into test.tab1_copy values (2, 3);
select 'joind columns from right table';
select a1 from test.tab1 any left join test.tab2 on b1 = a2;
select a1, b1 from test.tab1 any left join test.tab2 on b1 = a2;
select a1, a2 from test.tab1 any left join test.tab2 on b1 = a2;
select a1, b2 from test.tab1 any left join test.tab2 on b1 = a2;
select a1, a2, b2 from test.tab1 any left join test.tab2 on b1 = a2;
select 'join on expression';
select b1 from test.tab1 any left join test.tab2 on toInt32(a1 + 1) = a2;
select b1, a2 from test.tab1 any left join test.tab2 on toInt32(a1 + 1) = a2;
select b1, b2 from test.tab1 any left join test.tab2 on toInt32(a1 + 1) = a2;
select a1 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1;
select a2 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1;
select a1, b1, a2, b2 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1;
select a1, b1, a2, b2, a2 + 1 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1;
select a1, b1, a2, b2 from test.tab1 any left join test.tab2 on a1 + 4 = b2 + 2;
select 'join on and chain';
select a2, b2 from test.tab2 any left join test.tab3 on a2 = a3 and b2 = b3;
select a3, b3 from test.tab2 any left join test.tab3 on a2 = a3 and b2 = b3;
select a2, b2, a3, b3 from test.tab2 any left join test.tab3 on a2 = a3 and b2 = b3;
select a1 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1 and a1 + 4 = b2 + 2;
select a1, b2 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1 and a1 + 4 = b2 + 2;
select a1, b1, a2, b2 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1 and a1 + 4 = b2 + 2;
select a2, b2 + 1 from test.tab1 any left join test.tab2 on b1 + 1 = a2 + 1 and a1 + 4 = b2 + 2;
select 'join on aliases';
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on first.b1 = second.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on second.a2 = first.b1;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on tab1.b1 = tab2.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on tab2.a2 = tab1.b1;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on test.tab1.b1 = test.tab2.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on test.tab2.a2 = test.tab1.b1;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on first.b1 = tab2.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on tab2.a2 = first.b1;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on first.b1 = test.tab2.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on test.tab2.a2 = first.b1;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on tab1.b1 = second.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on second.a2 = tab1.b1;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on test.tab1.b1 = second.a2;
select a1, a2, b1, b2 from test.tab1 first any left join test.tab2 second on second.a2 = test.tab1.b1;
select a1, a2, first.b1, second.b2 from test.tab1 first any left join test.tab2 second on b1 = a2;
select a1, a2, tab1.b1, tab2.b2 from test.tab1 first any left join test.tab2 second on b1 = a2;
select a1, a2, test.tab1.b1, test.tab2.b2 from test.tab1 first any left join test.tab2 second on b1 = a2;
select 'join on complex expression';
select a2, b2 from test.tab2 any left join test.tab3 on a2 + b2 = a3 + b3;
select a2, b2 from test.tab2 any left join test.tab3 on a3 + tab3.b3 = a2 + b2;
select a2, b2 from test.tab2 second any left join test.tab3 on a3 + b3 = a2 + second.b2;
select a2, b2 from test.tab2 second any left join test.tab3 third on third.a3 + tab3.b3 = tab2.a2 + second.b2;
select a2, b2 from test.tab2 second any left join test.tab3 third on third.a3 + test.tab3.b3 = test.tab2.a2 + second.b2;
select 'duplicate column names';
select a1, tab1_copy.a1 from test.tab1 any left join test.tab1_copy on tab1.b1 + 3 = b1 + 2 FORMAT JSONEachRow;
select a1, test.tab1_copy.a1 from test.tab1 any left join test.tab1_copy on tab1.b1 + 3 = b1 + 2 FORMAT JSONEachRow;
select a1, copy.a1 from test.tab1 any left join test.tab1_copy copy on tab1.b1 + 3 = b1 + 2 FORMAT JSONEachRow;
select a1, tab1_copy.a1 from test.tab1 any left join test.tab1_copy copy on tab1.b1 + 3 = b1 + 2 FORMAT JSONEachRow;
select a1, test.tab1_copy.a1 from test.tab1 any left join test.tab1_copy copy on tab1.b1 + 3 = b1 + 2 FORMAT JSONEachRow;