Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2596d70

Browse files
committed
Re-Align *_freeze_max_age reloption limits with corresponding GUC limits.
In 020235a I lowered the autovacuum_*freeze_max_age minimums to allow for easier testing of wraparounds. I did not touch the corresponding per-table limits. While those don't matter for the purpose of wraparound, it seems more consistent to lower them as well. It's noteworthy that the previous reloption lower limit for autovacuum_multixact_freeze_max_age was too high by one magnitude, even before 020235a. Discussion: 26377.1443105453@sss.pgh.pa.us Backpatch: back to 9.0 (in parts), like the prior patch
1 parent 088c833 commit 2596d70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/common/reloptions.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ static relopt_int intRelOpts[] =
201201
RELOPT_KIND_HEAP | RELOPT_KIND_TOAST,
202202
ShareUpdateExclusiveLock
203203
},
204-
-1, 100000000, 2000000000
204+
-1, 100000, 2000000000
205205
},
206206
{
207207
{
@@ -210,7 +210,7 @@ static relopt_int intRelOpts[] =
210210
RELOPT_KIND_HEAP | RELOPT_KIND_TOAST,
211211
ShareUpdateExclusiveLock
212212
},
213-
-1, 100000000, 2000000000
213+
-1, 10000, 2000000000
214214
},
215215
{
216216
{

0 commit comments

Comments
 (0)