Stephen Frost <sfr...@snowman.net> writes: > In pg_dump, include pg_catalog and extension ACLs, if changed
This patch added a regression test step that creates some roles and doesn't drop them again. This is unacceptable, because (1) it breaks the ability to do "make installcheck" more than once. (2) it leaves roles lying around in a production installation, if installcheck is used there. And it doesn't even adhere to the convention we've agreed to about naming test roles regress_something. OK, it's not as dangerously broken that way as rowsecurity.sql, which is (still) creating roles named "alice" and "bob", but it's not acceptable like this. It'd be possible to fix (1) by adding "drop if exists", but I think the whole thing is wrongheaded due to (2). Perhaps the needs of the test could be met by granting/revoking some rights explicitly to current_user (ie, the test superuser)? That wouldn't have any real effects on a superuser, but it would provide some grist for testing the behavior. Or you could test this behavior in some other setting than the core regression tests; perhaps in a TAP test for pg_dump. regards, tom lane -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers