Added test.

This commit is contained in:
Nikolai Kochetov 2019-09-11 16:57:39 +03:00
parent a59ae3826d
commit 55acc72249
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,2 @@
0
10

View File

@ -0,0 +1,5 @@
drop table if exists tab;
create table tab (x UInt64) engine = MergeTree order by tuple();
insert into tab select number as n from numbers(20) any inner join (select number * 10 as n from numbers(2)) using(n) settings any_join_distinct_right_table_keys = 1, max_block_size = 5;
select * from tab order by x;