test_bulk_update: use new prefetch settings (#3007)

Replace `seqscan_prefetch_buffers` with `effective_io_concurrency` &
`maintenance_io_concurrency` in one more place (the last one!)
This commit is contained in:
Alexander Bayandin
2022-12-05 10:56:01 +00:00
committed by GitHub
parent 4f443c339d
commit ab073696d0

View File

@@ -42,7 +42,8 @@ def test_bulk_update(neon_env_builder: NeonEnvBuilder, zenbenchmark, fillfactor)
cur.execute("drop table t")
cur.execute("set enable_seqscan_prefetch=on")
cur.execute("set seqscan_prefetch_buffers=100")
cur.execute("set effective_io_concurrency=32")
cur.execute("set maintenance_io_concurrency=32")
cur.execute(f"create table t2(x integer) WITH (fillfactor={fillfactor})")