pg_dump: label INDEX ATTACH ArchiveEntries with an owner.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Jan 2021 18:37:38 +0000 (13:37 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Jan 2021 18:37:38 +0000 (13:37 -0500)
commit9eabfe300a22ad3d776dc293265e15379790bd9a
tree2153e1f87947a7e090dfc69b2d5252f114b61960
parentcc865c0f319fde22540625e02863f42e9853b3e4
pg_dump: label INDEX ATTACH ArchiveEntries with an owner.

Although a partitioned index's attachment to its parent doesn't
have separate ownership, the ArchiveEntry for it needs to be
marked with an owner anyway, to ensure that the ALTER command
is run by the appropriate role when restoring with
--use-set-session-authorization.  Without this, the ALTER will
be run by the role that started the restore session, which will
usually work but it's formally the wrong thing.

Back-patch to v11 where this type of ArchiveEntry was added.
In HEAD, add equivalent commentary to the just-added TABLE ATTACH
case, which I'd made do the right thing already.

Discussion: https://postgr.es/m/1094034.1610418498@sss.pgh.pa.us
src/bin/pg_dump/pg_dump.c