pg_upgrade: preserve freeze info for postgres/template1 dbs

pg_database.datfrozenxid and pg_database.datminmxid were not preserved
for the 'postgres' and 'template1' databases.  This could cause missing
clog file errors on access to user tables and indexes after upgrades in
these databases.

Backpatch through 9.0
This commit is contained in:
Bruce Momjian 2015-02-11 21:02:07 -05:00
parent 8785e6e378
commit 866f3017a8

View File

@ -1416,6 +1416,7 @@ dumpCreateDB(PGconn *conn)
dbconnlimit);
appendPQExpBufferStr(buf, ";\n");
}
if (binary_upgrade)
{
@ -1427,7 +1428,6 @@ dumpCreateDB(PGconn *conn)
appendStringLiteralConn(buf, dbname, conn);
appendPQExpBufferStr(buf, ";\n");
}
}
if (!skip_acls &&
!buildACLCommands(fdbname, NULL, "DATABASE", dbacl, dbowner,