This commit is contained in:
kssenii 2023-07-31 12:41:53 +02:00
parent 0cf93e7114
commit 6f9cdab8a4

View File

@ -41,7 +41,7 @@ def test_cache_evicted_by_temporary_data(start_cluster):
# Codec is NONE to make cache size predictable
q(
"CREATE TABLE t1 (x UInt64 CODEC(NONE)) ENGINE = MergeTree ORDER BY x SETTINGS storage_policy = 'tiny_local_cache'"
"CREATE TABLE t1 (x UInt64 CODEC(NONE), y UInt64 CODEC(NONE)) ENGINE = MergeTree ORDER BY x SETTINGS storage_policy = 'tiny_local_cache'"
)
q("INSERT INTO t1 SELECT number, number FROM numbers(1024 * 1024)")