[PATCH 1/2] Make GUC descriptions consistent 1
Kyotaro Horiguchi <horikyota.ntt@gmail.com>
From: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
To:
Date: 2025-02-18T01:06:10Z
Lists: pgsql-hackers
A recent commit introduced a new variable
"enable_self_join_elimination", but its description is written as
"Enable removal of ...", whereas existing variables typically use
"Enables removal of ...". Adjust the description of the new variable
to match the style of existing ones.
---
src/backend/utils/misc/guc_tables.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c
index cce73314609..3b488b4a559 100644
--- a/src/backend/utils/misc/guc_tables.c
+++ b/src/backend/utils/misc/guc_tables.c
@@ -990,7 +990,7 @@ struct config_bool ConfigureNamesBool[] =
},
{
{"enable_self_join_elimination", PGC_USERSET, QUERY_TUNING_METHOD,
- gettext_noop("Enable removal of unique self-joins."),
+ gettext_noop("Enables removal of unique self-joins."),
NULL,
GUC_EXPLAIN | GUC_NOT_IN_SAMPLE
},
--
2.43.5
----Next_Part(Tue_Feb_18_10_32_40_2025_065)--
Content-Type: Text/X-Patch; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="0002-Make-GUC-descriptions-consistent-2.patch"