ClickHouse/tests/queries/0_stateless/01009_insert_select_data_loss.sql
2023-03-01 18:03:42 +01:00

10 lines
311 B
SQL

drop table if exists tab;
create table tab (x UInt64) engine = MergeTree order by tuple();
insert into tab select n from (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;
select * from tab order by x;
drop table tab;