mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test.
This commit is contained in:
parent
a59ae3826d
commit
55acc72249
@ -0,0 +1,2 @@
|
||||
0
|
||||
10
|
@ -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;
|
Loading…
Reference in New Issue
Block a user