]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix ordering of GRANT commands in pg_dumpall for tablespaces
authorMichael Paquier <michael@paquier.xyz>
Thu, 23 May 2019 01:48:35 +0000 (10:48 +0900)
committerMichael Paquier <michael@paquier.xyz>
Thu, 23 May 2019 01:48:35 +0000 (10:48 +0900)
commitc82e8ba0016319bb7c18ace7a9a77a7d7550f997
tree7522ca104347e7e067c9cab93cf8566aef33966e
parenta21fb12e7cc3e5ef976a384e7e7295d7e9b7460d
Fix ordering of GRANT commands in pg_dumpall for tablespaces

This uses a method similar to 68a7c24f and now b8c6014 (applied for
database creation), which guarantees that GRANT commands using the WITH
GRANT OPTION are dumped in a way so as cascading dependencies are
respected.  Note that tablespaces do not have support for initial
privileges via pg_init_privs, so the same method needs to be applied
again.  It would be nice to merge all the logic generating ACL queries
in dumps under the same banner, but this requires extending the support
of pg_init_privs to objects that cannot use it yet, so this is left as
future work.

Discussion: https://postgr.es/m/20190522071555.GB1278@paquier.xyz
Author: Michael Paquier
Reviewed-by: Nathan Bossart
Backpatch-through: 9.6
src/bin/pg_dump/pg_dumpall.c