diff options
author | Masahiko Sawada <msawada@postgresql.org> | 2024-08-30 15:06:09 -0700 |
---|---|---|
committer | Masahiko Sawada <msawada@postgresql.org> | 2024-08-30 15:06:09 -0700 |
commit | d7613ea72f787f0cc3c1749f7444f17730f4d697 (patch) | |
tree | 502ed4a1b04f43e5ef819c60893ffbbbe961eaf0 /src/backend/utils/misc/guc_tables.c | |
parent | 0e5c823806a3519a3f6966637cb62755dee659d4 (diff) | |
download | postgresql-d7613ea72f787f0cc3c1749f7444f17730f4d697.tar.gz postgresql-d7613ea72f787f0cc3c1749f7444f17730f4d697.zip |
Clarify restrict_nonsystem_relation_kind description.
This change improves the description of the
restrict_nonsystem_relation_kind parameter in guc_table.c and the
documentation for better clarity.
Backpatch to 12, where this GUC parameter was introduced.
Reviewed-by: Peter Eisentraut
Discussion: https://postgr.es/m/6a96f1af-22b4-4a80-8161-1f26606b9ee2%40eisentraut.org
Backpatch-through: 12
Diffstat (limited to 'src/backend/utils/misc/guc_tables.c')
-rw-r--r-- | src/backend/utils/misc/guc_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c index 880d76aae0f..521ec5591c8 100644 --- a/src/backend/utils/misc/guc_tables.c +++ b/src/backend/utils/misc/guc_tables.c @@ -4774,7 +4774,7 @@ struct config_string ConfigureNamesString[] = { {"restrict_nonsystem_relation_kind", PGC_USERSET, CLIENT_CONN_STATEMENT, - gettext_noop("Sets relation kinds of non-system relation to restrict use"), + gettext_noop("Prohibits access to non-system relations of specified kinds."), NULL, GUC_LIST_INPUT | GUC_NOT_IN_SAMPLE }, |