Skip to content

Commit 7821a0b

Browse files
committed
Check criticalSharedRelcachesBuilt in GetSharedSecurityLabel().
An extension may want to call GetSecurityLabel() on a shared object before the shared relcaches are fully initialized. For instance, a ClientAuthentication_hook might want to retrieve the security label on a role. Discussion: https://postgr.es/m/ecb7af0b26e3be1d96d291c8453a86f1f82d9061.camel@j-davis.com Backpatch-through: 9.6
1 parent 4d5f651 commit 7821a0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/seclabel.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ GetSharedSecurityLabel(const ObjectAddress *object, const char *provider)
244244

245245
pg_shseclabel = table_open(SharedSecLabelRelationId, AccessShareLock);
246246

247-
scan = systable_beginscan(pg_shseclabel, SharedSecLabelObjectIndexId, true,
248-
NULL, 3, keys);
247+
scan = systable_beginscan(pg_shseclabel, SharedSecLabelObjectIndexId,
248+
criticalSharedRelcachesBuilt, NULL, 3, keys);
249249

250250
tuple = systable_getnext(scan);
251251
if (HeapTupleIsValid(tuple))

0 commit comments

Comments
 (0)