Remove the DELETEs from pg_shadow and pg_group that pg_dumpall used to

Tom Lane <tgl@sss.pgh.pa.us>

Commit: c6b9924bec6f621f9bbceb38d7839a83c148c6ce
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2005-10-10T22:29:48Z
Releases: 8.1.0
Remove the DELETEs from pg_shadow and pg_group that pg_dumpall used to
emit when given the --clean option, in favor of individual DROP ROLE
commands.  The old technique could not possibly work in 8.1, and was
never a very good idea anyway IMHO.  The DROP ROLE approach has the
defect that the DROPs will fail for roles that own objects or have
privileges, but perhaps we can improve that later.

Files

PathChange+/−
doc/src/sgml/ref/pg_dumpall.sgml modified +4 −3
src/bin/pg_dump/pg_dumpall.c modified +25 −41