Added test

This commit is contained in:
Nikolai Kochetov 2020-06-11 16:41:14 +03:00
parent ed0826efa7
commit 3eed1c8c2b
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
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;