mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03:00
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
This commit is contained in:
parent
fd55df04ed
commit
060e5bd70e
@ -26,7 +26,7 @@ CREATE TABLE brintest (byteacol bytea,
|
|||||||
int4rangecol int4range,
|
int4rangecol int4range,
|
||||||
lsncol pg_lsn,
|
lsncol pg_lsn,
|
||||||
boxcol box
|
boxcol box
|
||||||
) WITH (fillfactor=10);
|
) WITH (fillfactor=10, autovacuum_enabled=off);
|
||||||
INSERT INTO brintest SELECT
|
INSERT INTO brintest SELECT
|
||||||
repeat(stringu1, 8)::bytea,
|
repeat(stringu1, 8)::bytea,
|
||||||
substr(stringu1, 1, 1)::"char",
|
substr(stringu1, 1, 1)::"char",
|
||||||
|
@ -26,7 +26,7 @@ CREATE TABLE brintest (byteacol bytea,
|
|||||||
int4rangecol int4range,
|
int4rangecol int4range,
|
||||||
lsncol pg_lsn,
|
lsncol pg_lsn,
|
||||||
boxcol box
|
boxcol box
|
||||||
) WITH (fillfactor=10);
|
) WITH (fillfactor=10, autovacuum_enabled=off);
|
||||||
|
|
||||||
INSERT INTO brintest SELECT
|
INSERT INTO brintest SELECT
|
||||||
repeat(stringu1, 8)::bytea,
|
repeat(stringu1, 8)::bytea,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user