fix tests

This commit is contained in:
Anton Popov 2024-11-18 10:41:47 +00:00
parent 62000b22fc
commit fe0d96f72a
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
-- Tags: no-object-storage
DROP TABLE IF EXISTS test_01343;
CREATE TABLE test_01343 (x String) ENGINE = MergeTree ORDER BY tuple() SETTINGS min_bytes_for_wide_part = 0;
CREATE TABLE test_01343 (x String) ENGINE = MergeTree ORDER BY tuple() SETTINGS min_bytes_for_wide_part = 0, prewarm_mark_cache = 0;
INSERT INTO test_01343 VALUES ('Hello, world');
SET local_filesystem_read_method = 'mmap', min_bytes_to_use_mmap_io = 1;

View File

@ -1,6 +1,6 @@
-- Tags: no-object-storage
DROP TABLE IF EXISTS test_01344;
CREATE TABLE test_01344 (x String, INDEX idx (x) TYPE set(10) GRANULARITY 1) ENGINE = MergeTree ORDER BY tuple() SETTINGS min_bytes_for_wide_part = 0;
CREATE TABLE test_01344 (x String, INDEX idx (x) TYPE set(10) GRANULARITY 1) ENGINE = MergeTree ORDER BY tuple() SETTINGS min_bytes_for_wide_part = 0, prewarm_mark_cache = 0;
INSERT INTO test_01344 VALUES ('Hello, world');
SET local_filesystem_read_method = 'mmap', min_bytes_to_use_mmap_io = 1;