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

6 lines
309 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) 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;