mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
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:
parent
8785e6e378
commit
866f3017a8
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user