ClickHouse/dbms/tests/queries/0_stateless/00926_adaptive_index_granularity_collapsing_merge_tree.sql

74 lines
3.2 KiB
MySQL
Raw Normal View History

2019-03-27 11:32:09 +00:00
----- Group of very similar simple tests ------
2019-06-07 14:59:41 +00:00
DROP TABLE IF EXISTS zero_rows_per_granule;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
CREATE TABLE zero_rows_per_granule (
2019-03-27 11:32:09 +00:00
p Date,
k UInt64,
v1 UInt64,
v2 Int64,
Sign Int8
) ENGINE CollapsingMergeTree(Sign) PARTITION BY toYYYYMM(p) ORDER BY k
SETTINGS index_granularity_bytes=20,
enable_vertical_merge_algorithm=1,
vertical_merge_algorithm_min_rows_to_activate=0,
vertical_merge_algorithm_min_columns_to_activate=0;
2019-06-07 14:59:41 +00:00
INSERT INTO zero_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 1, 1000, 2000, 1), ('2018-05-16', 2, 3000, 4000, 1), ('2018-05-17', 3, 5000, 6000, 1), ('2018-05-18', 4, 7000, 8000, 1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT COUNT(*) FROM zero_rows_per_granule;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT distinct(marks) from system.parts WHERE table = 'zero_rows_per_granule' and database=currentDatabase() and active=1;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
INSERT INTO zero_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 5, 1000, 2000, 1), ('2018-05-16', 6, 3000, 4000, 1), ('2018-05-17', 7, 5000, 6000, 1), ('2018-05-19', 8, 7000, 8000, 1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
OPTIMIZE TABLE zero_rows_per_granule FINAL;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT COUNT(*) FROM zero_rows_per_granule FINAL;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT sum(marks) from system.parts WHERE table = 'zero_rows_per_granule' and database=currentDatabase() and active=1;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
DROP TABLE IF EXISTS zero_rows_per_granule;
2019-03-27 11:32:09 +00:00
SELECT '-----';
2019-06-07 14:59:41 +00:00
DROP TABLE IF EXISTS four_rows_per_granule;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
CREATE TABLE four_rows_per_granule (
2019-03-27 11:32:09 +00:00
p Date,
k UInt64,
v1 UInt64,
v2 Int64,
Sign Int8
) ENGINE CollapsingMergeTree(Sign) PARTITION BY toYYYYMM(p) ORDER BY k
SETTINGS index_granularity_bytes=110,
enable_vertical_merge_algorithm=1,
vertical_merge_algorithm_min_rows_to_activate=0,
vertical_merge_algorithm_min_columns_to_activate=0;
2019-06-07 14:59:41 +00:00
INSERT INTO four_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 1, 1000, 2000, 1), ('2018-05-16', 2, 3000, 4000, 1), ('2018-05-17', 3, 5000, 6000, 1), ('2018-05-18', 4, 7000, 8000, 1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT COUNT(*) FROM four_rows_per_granule;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT distinct(marks) from system.parts WHERE table = 'four_rows_per_granule' and database=currentDatabase() and active=1;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
INSERT INTO four_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 1, 1000, 2000, -1), ('2018-05-16', 2, 3000, 4000, -1), ('2018-05-17', 3, 5000, 6000, -1), ('2018-05-18', 4, 7000, 8000, -1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
OPTIMIZE TABLE four_rows_per_granule FINAL;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT COUNT(*) FROM four_rows_per_granule;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT distinct(marks) from system.parts WHERE table = 'four_rows_per_granule' and database=currentDatabase() and active=1;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
INSERT INTO four_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 1, 1000, 2000, 1), ('2018-05-16', 2, 3000, 4000, 1), ('2018-05-17', 3, 5000, 6000, 1), ('2018-05-18', 4, 7000, 8000, 1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
INSERT INTO four_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 5, 1000, 2000, 1), ('2018-05-16', 6, 3000, 4000, 1), ('2018-05-17', 7, 5000, 6000, 1), ('2018-05-18', 8, 7000, 8000, 1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
INSERT INTO four_rows_per_granule (p, k, v1, v2, Sign) VALUES ('2018-05-15', 5, 1000, 2000, -1), ('2018-05-17', 7, 5000, 6000, -1);
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
OPTIMIZE TABLE four_rows_per_granule FINAL;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT COUNT(*) FROM four_rows_per_granule;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
SELECT distinct(marks) from system.parts WHERE table = 'four_rows_per_granule' and database=currentDatabase() and active=1;
2019-03-27 11:32:09 +00:00
2019-06-07 14:59:41 +00:00
DROP TABLE IF EXISTS four_rows_per_granule;