diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-01-07 21:59:29 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-01-07 21:59:29 -0500 |
commit | d8d3d2a4f37f6df5d0118b7f5211978cca22091a (patch) | |
tree | 11299c3a356d18091724b3506c6e2b8ae9965a5d /contrib/pg_upgrade/dump.c | |
parent | 2896c87ce4dc789722296f010eaefd5cbb86ece3 (diff) |
Fix pg_upgrade of large object permissions by preserving pg_auth.oid,
which is stored in pg_largeobject_metadata.
No backpatch to 9.0 because you can't migrate from 9.0 to 9.0 with the
same catversion (because of tablespace conflict), and a pre-9.0
migration to 9.0 has not large object permissions to migrate.
Diffstat (limited to 'contrib/pg_upgrade/dump.c')
-rw-r--r-- | contrib/pg_upgrade/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/dump.c b/contrib/pg_upgrade/dump.c index 52ab4813a8e..aba95f44c95 100644 --- a/contrib/pg_upgrade/dump.c +++ b/contrib/pg_upgrade/dump.c @@ -33,7 +33,7 @@ generate_old_dump(void) * * This function splits pg_dumpall output into global values and * database creation, and per-db schemas. This allows us to create - * the toast place holders between restoring these two parts of the + * the support functions between restoring these two parts of the * dump. We split on the first "\connect " after a CREATE ROLE * username match; this is where the per-db restore starts. * |