From 8b8e5f9e32a1faf06f70011819e44a825565aee1 Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Wed, 30 Apr 2025 17:57:58 +0300 Subject: [PATCH] Address review comments --- test_runner/performance/test_lfc_prefetch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_runner/performance/test_lfc_prefetch.py b/test_runner/performance/test_lfc_prefetch.py index c5cd155560..c199e8fd7a 100644 --- a/test_runner/performance/test_lfc_prefetch.py +++ b/test_runner/performance/test_lfc_prefetch.py @@ -33,7 +33,6 @@ def test_lfc_prefetch(neon_simple_env: NeonEnv, n_readers: int, n_writers: int, "shared_buffers=128MB", "enable_bitmapscan=off", "enable_seqscan=off", - "autovacuum=off", f"neon.file_cache_chunk_size={chunk_size}", "neon.store_prefetch_result_in_lfc=on", ], @@ -127,7 +126,7 @@ def test_lfc_async_prefetch_performance(neon_simple_env: NeonEnv, zenbenchmark): cur.execute(f"insert into account values (generate_series(1,{n_records}))") cur.execute("vacuum account") - with zenbenchmark.record_duration("do_not_store_store_prefetch_results"): + with zenbenchmark.record_duration("do_not_store_prefetch_results"): cur.execute("set neon.store_prefetch_result_in_lfc=off") for _ in range(n_iterations): cur.execute(