1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-13 16:22:44 +03:00

Add TOAST table to pg_shseclabel for long label use

Report by Andres Freund
This commit is contained in:
Bruce Momjian
2015-03-21 22:14:49 -04:00
parent 34afbba84e
commit 1c7087af42
2 changed files with 6 additions and 1 deletions

View File

@@ -246,7 +246,9 @@ IsSharedRelation(Oid relationId)
if (relationId == PgShdescriptionToastTable ||
relationId == PgShdescriptionToastIndex ||
relationId == PgDbRoleSettingToastTable ||
relationId == PgDbRoleSettingToastIndex)
relationId == PgDbRoleSettingToastIndex ||
relationId == PgShseclabelToastTable ||
relationId == PgShseclabelToastIndex)
return true;
return false;
}