ClickHouse/tests/queries/1_stateful/00162_mmap_compression_none.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
338 B
MySQL
Raw Normal View History

2021-03-26 19:08:53 +00:00
DROP TABLE IF EXISTS hits_none;
2023-08-13 02:47:05 +00:00
CREATE TABLE hits_none (Title String CODEC(NONE)) ENGINE = MergeTree ORDER BY tuple() SETTINGS index_granularity = 8192, index_granularity_bytes = '10Mi';
2021-03-26 19:08:53 +00:00
INSERT INTO hits_none SELECT Title FROM test.hits;
SET min_bytes_to_use_mmap_io = 1;
SELECT sum(length(Title)) FROM hits_none;
DROP TABLE hits_none;