From 54b1fbd54d2de4a7b96248e2fa0846f9feb097d9 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Sun, 27 Oct 2024 08:01:00 +0100 Subject: [PATCH] Reenable autovacuum in CI We want to run autovacuum in CI to find bugs with our own code when parallel vacuum is happening. (cherry picked from commit 647e558871fcd99dc8b9321421cbe02026eab536) --- test/postgresql.conf.in | 2 +- tsl/test/postgresql.conf.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/postgresql.conf.in b/test/postgresql.conf.in index cb03e9c0f9c..124a2d14d44 100644 --- a/test/postgresql.conf.in +++ b/test/postgresql.conf.in @@ -1,7 +1,7 @@ # NOTE: any changes here require changes to tsl/test/postgresql.conf. Its prefix # must be the same as this file. -autovacuum=false +autovacuum=true datestyle='Postgres, MDY' hba_file='@TEST_PG_HBA_FILE@' log_destination='@TEST_PG_LOG_DESTINATION@' diff --git a/tsl/test/postgresql.conf.in b/tsl/test/postgresql.conf.in index ed6eef0b194..5957bb664fe 100644 --- a/tsl/test/postgresql.conf.in +++ b/tsl/test/postgresql.conf.in @@ -1,6 +1,6 @@ # This section has to be equivalent to test/postgresql.conf -autovacuum=false +autovacuum=true datestyle='Postgres, MDY' hba_file='@TEST_PG_HBA_FILE@' log_destination='@TEST_PG_LOG_DESTINATION@'