Added test for RIGHT JOIN #1731

This commit is contained in:
Alexey Milovidov 2018-01-09 20:31:52 +03:00
parent a3d2a4fe4d
commit c4e5f8a500
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,11 @@
0
1
2
3
4
5
6
7
8
9
10

View File

@ -0,0 +1,2 @@
SET max_block_size = 10;
SELECT * FROM (select toUInt64(1) s limit 1) any right join (select number s from numbers(11)) using (s) ORDER BY s;