mirror of https://github.com/citusdata/citus.git
Removes useless parameter
parent
154dfeed49
commit
77f0e4be86
|
@ -879,7 +879,6 @@ GenerateGrantRoleStmtsOfRole(Oid roleid)
|
||||||
|
|
||||||
List *adminStmts = NIL;
|
List *adminStmts = NIL;
|
||||||
List *otherStmts = NIL;
|
List *otherStmts = NIL;
|
||||||
List *allStmts = NIL;
|
|
||||||
|
|
||||||
ScanKeyData skey[1];
|
ScanKeyData skey[1];
|
||||||
|
|
||||||
|
@ -911,7 +910,7 @@ GenerateGrantRoleStmtsOfRole(Oid roleid)
|
||||||
systable_endscan(scan);
|
systable_endscan(scan);
|
||||||
table_close(pgAuthMembers, AccessShareLock);
|
table_close(pgAuthMembers, AccessShareLock);
|
||||||
|
|
||||||
allStmts = list_concat(adminStmts, otherStmts);
|
List *allStmts = list_concat(adminStmts, otherStmts);
|
||||||
List *commands = NIL;
|
List *commands = NIL;
|
||||||
Node *stmt = NULL;
|
Node *stmt = NULL;
|
||||||
foreach_ptr(stmt, allStmts)
|
foreach_ptr(stmt, allStmts)
|
||||||
|
|
Loading…
Reference in New Issue