mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
13 lines
583 B
SQL
13 lines
583 B
SQL
drop table if exists trepl;
|
|
create table trepl(d Date,a Int32, b Int32) engine = ReplacingMergeTree(d, (a,b), 8192);
|
|
insert into trepl values ('2018-09-19', 1, 1);
|
|
select b from trepl FINAL prewhere a < 1000;
|
|
drop table trepl;
|
|
|
|
|
|
drop table if exists versioned_collapsing;
|
|
create table versioned_collapsing(d Date, x UInt32, sign Int8, version UInt32) engine = VersionedCollapsingMergeTree(d, x, 8192, sign, version);
|
|
insert into versioned_collapsing values ('2018-09-19', 123, 1, 0);
|
|
select x from versioned_collapsing FINAL prewhere version < 1000;
|
|
drop table versioned_collapsing;
|