Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7b7fa85

Browse files
Fix stop condition for dumping GRANT commands
Commit ce6b672 changed dumping GRANT commands to ensure that grantors already have an ADMIN OPTION on the role for which it is granting permissions. Looping over the grants per role has a stop condition on dumping the grant statements, but accidentally missed updating the variable for the conditional check. Author: Andreas Scherbaum <ads@pgug.de> Co-authored-by: Artur Zakirov <zaartur@gmail.com> Discussion: https://postgr.es/m/de44299d-cd31-b41f-2c2a-161fa5e586a5@pgug.de
1 parent 4def50e commit 7b7fa85

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/bin/pg_dump/pg_dumpall.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,6 +1052,7 @@ dumpRoleMembership(PGconn *conn)
10521052
PQfinish(conn);
10531053
exit_nicely(1);
10541054
}
1055+
prev_remaining = remaining;
10551056

10561057
/* Make one pass over the grants for this role. */
10571058
for (i = start; i < end; ++i)

0 commit comments

Comments
 (0)