ClickHouse/tests/queries/0_stateless/01305_buffer_final_bug.sql
Nikolai Kochetov 3eed1c8c2b Added test
2020-06-11 16:41:14 +03:00

12 lines
448 B
SQL

drop table if exists t;
drop table if exists t_buf;
create table t (x UInt64) engine = MergeTree order by (x, intHash64(x)) sample by intHash64(x);
insert into t select number from numbers(10000);
create table t_buf as t engine = Buffer(currentDatabase(), 't', 16, 20, 100, 100000, 10000000, 50000000, 250000000);
insert into t_buf values (1);
select count() from t_buf sample 1/2 format Null;
drop table if exists t_buf;
drop table if exists t;