ClickHouse/tests/queries/0_stateless/01009_insert_select_data_loss.sql

10 lines
295 B
MySQL
Raw Normal View History

2019-09-11 13:57:39 +00:00
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) nums
semi left join (select number * 10 as n from numbers(2)) js2 using(n)
settings max_block_size = 5;
2019-09-11 13:57:39 +00:00
select * from tab order by x;
drop table tab;