mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
29 lines
1.2 KiB
SQL
29 lines
1.2 KiB
SQL
DROP TABLE IF EXISTS test;
|
|
CREATE TABLE test (s String) ENGINE = MergeTree ORDER BY s SETTINGS index_granularity = 1;
|
|
|
|
SET optimize_trivial_insert_select = 1;
|
|
INSERT INTO test SELECT randomString(1000) FROM numbers(100000);
|
|
SELECT round(primary_key_bytes_in_memory, -7), round(primary_key_bytes_in_memory_allocated, -7) FROM system.parts WHERE database = currentDatabase() AND table = 'test' FORMAT Vertical;
|
|
|
|
DETACH TABLE test;
|
|
SET max_memory_usage = '50M';
|
|
ATTACH TABLE test;
|
|
|
|
SELECT primary_key_bytes_in_memory, primary_key_bytes_in_memory_allocated FROM system.parts WHERE database = currentDatabase() AND table = 'test' FORMAT Vertical;
|
|
|
|
SET max_memory_usage = '200M';
|
|
|
|
-- Run a query that doesn use indexes
|
|
SELECT s != '' FROM test LIMIT 1;
|
|
|
|
-- Check that index was not loaded
|
|
SELECT primary_key_bytes_in_memory, primary_key_bytes_in_memory_allocated FROM system.parts WHERE database = currentDatabase() AND table = 'test' FORMAT Vertical;
|
|
|
|
-- Run a query that uses PK index
|
|
SELECT s != '' FROM test WHERE s < '9999999999' LIMIT 1;
|
|
|
|
-- Check that index was loaded
|
|
SELECT round(primary_key_bytes_in_memory, -7), round(primary_key_bytes_in_memory_allocated, -7) FROM system.parts WHERE database = currentDatabase() AND table = 'test' FORMAT Vertical;
|
|
|
|
DROP TABLE test;
|