mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
fix tests
This commit is contained in:
parent
62000b22fc
commit
fe0d96f72a
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user