Fix handling of OID wraparound while in standalone mode. If OID wraparound should occur while in standalone mode (unlikely but possible), we want to advance the counter to FirstNormalObjectId not FirstBootstrapObjectId. Otherwise, user objects might be created with OIDs in the system-reserved range. That isn't immediately harmful but it poses a risk of conflicts during future pg_upgrade operations.
Noted by Andres Freund. Back-patch to all supported branches, since all of them are supported sources for pg_upgrade operations. Branch ------ REL9_0_STABLE Details ------- http://git.postgresql.org/pg/commitdiff/e150773ffad96e13184c57e98bd07229840de3f4 Modified Files -------------- src/backend/access/transam/varsup.c | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
