mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
24 lines
911 B
MySQL
24 lines
911 B
MySQL
|
DROP TABLE IF EXISTS lwd_merge;
|
||
|
|
||
|
CREATE TABLE lwd_merge (id UInt64 CODEC(NONE))
|
||
|
ENGINE = MergeTree ORDER BY id
|
||
|
SETTINGS max_bytes_to_merge_at_max_space_in_pool = 80000, exclude_deleted_rows_for_part_size_in_merge = 0;
|
||
|
|
||
|
INSERT INTO lwd_merge SELECT number FROM numbers(10000);
|
||
|
INSERT INTO lwd_merge SELECT number FROM numbers(10000, 10000);
|
||
|
|
||
|
OPTIMIZE TABLE lwd_merge;
|
||
|
SELECT count() FROM system.parts WHERE database = currentDatabase() AND table = 'lwd_merge' AND active = 1;
|
||
|
|
||
|
DELETE FROM lwd_merge WHERE id % 10 > 0;
|
||
|
|
||
|
OPTIMIZE TABLE lwd_merge;
|
||
|
SELECT count() FROM system.parts WHERE database = currentDatabase() AND table = 'lwd_merge' AND active = 1;
|
||
|
|
||
|
ALTER TABLE lwd_merge MODIFY SETTING exclude_deleted_rows_for_part_size_in_merge = 1;
|
||
|
|
||
|
OPTIMIZE TABLE lwd_merge;
|
||
|
SELECT count() FROM system.parts WHERE database = currentDatabase() AND table = 'lwd_merge' AND active = 1;
|
||
|
|
||
|
DROP TABLE IF EXISTS lwd_merge;
|