ClickHouse/tests/queries/0_stateless/01419_skip_index_compact_parts.sql

15 lines
520 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS index_compact;
2020-11-11 15:29:36 +00:00
CREATE TABLE index_compact(a UInt32, b UInt32, index i1 b type minmax granularity 1)
ENGINE = MergeTree ORDER BY a
SETTINGS min_rows_for_wide_part = 1000, index_granularity = 128, merge_max_block_size = 100;
INSERT INTO index_compact SELECT number, toString(number) FROM numbers(100);
INSERT INTO index_compact SELECT number, toString(number) FROM numbers(30);
OPTIMIZE TABLE index_compact FINAL;
SELECT count() FROM index_compact WHERE b < 10;
2020-11-11 15:29:36 +00:00
DROP TABLE index_compact;