File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ vacuum_set_xid_limits(Relation rel,
531
531
*/
532
532
nextXid = ReadNewTransactionId ();
533
533
if (nextXid > FirstNormalTransactionId + autovacuum_freeze_max_age )
534
- safeLimit = ReadNewTransactionId () - autovacuum_freeze_max_age ;
534
+ safeLimit = nextXid - autovacuum_freeze_max_age ;
535
535
else
536
536
safeLimit = FirstNormalTransactionId ;
537
537
Original file line number Diff line number Diff line change @@ -4296,6 +4296,9 @@ build_guc_variables(void)
4296
4296
for (i = 0 ; ConfigureNamesInt [i ].gen .name ; i ++ )
4297
4297
guc_vars [num_vars ++ ] = & ConfigureNamesInt [i ].gen ;
4298
4298
4299
+ for (i = 0 ; ConfigureNamesInt64 [i ].gen .name ; i ++ )
4300
+ guc_vars [num_vars ++ ] = & ConfigureNamesInt64 [i ].gen ;
4301
+
4299
4302
for (i = 0 ; ConfigureNamesReal [i ].gen .name ; i ++ )
4300
4303
guc_vars [num_vars ++ ] = & ConfigureNamesReal [i ].gen ;
4301
4304
You can’t perform that action at this time.
0 commit comments