mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Fix pgrowlocks minor coding oversight
This commit is contained in:
parent
25fff40798
commit
ceb3158abe
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ pgrowlocks(PG_FUNCTION_ARGS)
|
|||
rel = heap_openrv(relrv, AccessShareLock);
|
||||
|
||||
/* check permissions: must have SELECT on table or be in pg_stat_scan_tables */
|
||||
aclresult = (pg_class_aclcheck(RelationGetRelid(rel), GetUserId(),
|
||||
aclresult = pg_class_aclcheck(RelationGetRelid(rel), GetUserId(),
|
||||
ACL_SELECT) ||
|
||||
is_member_of_role(GetUserId(), DEFAULT_ROLE_STAT_SCAN_TABLES);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue