aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2020-08-17 16:20:06 -0400
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2020-08-17 16:20:06 -0400
commit4f47c8e7d438a0ae8ea631cd0c3b92db5593901d (patch)
tree432774261dd64f21acba3e193af9a8a7b1193b5f /src
parent314f65716c37d515979eb2f06430b18bb7a09a0d (diff)
downloadpostgresql-4f47c8e7d438a0ae8ea631cd0c3b92db5593901d.tar.gz
postgresql-4f47c8e7d438a0ae8ea631cd0c3b92db5593901d.zip
Disable autovacuum for BRIN test table
This should improve stability in the tests. Per buildfarm member hyrax (CLOBBER_CACHE_ALWAYS) via Tom Lane. Discussion: https://postgr.es/m/871534.1597503261@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/brin.out2
-rw-r--r--src/test/regress/sql/brin.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/brin.out b/src/test/regress/expected/brin.out
index ca80f00dc90..24486b5be67 100644
--- a/src/test/regress/expected/brin.out
+++ b/src/test/regress/expected/brin.out
@@ -26,7 +26,7 @@ CREATE TABLE brintest (byteacol bytea,
int4rangecol int4range,
lsncol pg_lsn,
boxcol box
-) WITH (fillfactor=10);
+) WITH (fillfactor=10, autovacuum_enabled=off);
INSERT INTO brintest SELECT
repeat(stringu1, 8)::bytea,
substr(stringu1, 1, 1)::"char",
diff --git a/src/test/regress/sql/brin.sql b/src/test/regress/sql/brin.sql
index 11f8fe9bb32..b566a66b323 100644
--- a/src/test/regress/sql/brin.sql
+++ b/src/test/regress/sql/brin.sql
@@ -26,7 +26,7 @@ CREATE TABLE brintest (byteacol bytea,
int4rangecol int4range,
lsncol pg_lsn,
boxcol box
-) WITH (fillfactor=10);
+) WITH (fillfactor=10, autovacuum_enabled=off);
INSERT INTO brintest SELECT
repeat(stringu1, 8)::bytea,