diff options
author | Amit Kapila <akapila@postgresql.org> | 2022-04-20 08:48:25 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2022-04-20 08:48:25 +0530 |
commit | 7891a0d5d9fa53a0ba55ff70d77db54c7e50998f (patch) | |
tree | e08dc133ec0d8cca9161da513329bcbc07cd1e90 | |
parent | 08a9e7a8c7917233926802aaea94a5529a747a50 (diff) | |
download | postgresql-7891a0d5d9fa53a0ba55ff70d77db54c7e50998f.tar.gz postgresql-7891a0d5d9fa53a0ba55ff70d77db54c7e50998f.zip |
Stabilize streaming tests in test_decoding.
We have some streaming tests that rely on the size of changes which can
fail if there are additional changes like invalidation messages by
background activity like auto analyze. Avoid such failures by increasing
autovacuum_naptime to a reasonably high value (1d).
Author: Dilip Kumar
Backpatch-through: 14
Discussion: https://postgr.es/m/1958043.1650129119@sss.pgh.pa.us
-rw-r--r-- | contrib/test_decoding/logical.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/test_decoding/logical.conf b/contrib/test_decoding/logical.conf index 07c4d3d7c8f..cc12f2542b4 100644 --- a/contrib/test_decoding/logical.conf +++ b/contrib/test_decoding/logical.conf @@ -1,3 +1,4 @@ wal_level = logical max_replication_slots = 4 logical_decoding_work_mem = 64kB +autovacuum_naptime = 1d |