Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f2e4c2b

Browse files
committed
Make the description of some GUCs more consistent
This commit improves the description of a couple of GUCs, to be more consistent with the style of their surroundings: * array_nulls * enable_self_join_elimination * optimize_bounded_sort * row_security * synchronize_seqscans Author: Kyotaro Horiguchi Discussion: https://postgr.es/m/20250218.103240.1422205966404509831.horikyota.ntt@gmail.com
1 parent 06dc1ff commit f2e4c2b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/backend/utils/misc/guc_tables.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ struct config_bool ConfigureNamesBool[] =
990990
},
991991
{
992992
{"enable_self_join_elimination", PGC_USERSET, QUERY_TUNING_METHOD,
993-
gettext_noop("Enable removal of unique self-joins."),
993+
gettext_noop("Enables removal of unique self-joins."),
994994
NULL,
995995
GUC_EXPLAIN | GUC_NOT_IN_SAMPLE
996996
},
@@ -1667,7 +1667,7 @@ struct config_bool ConfigureNamesBool[] =
16671667
},
16681668
{
16691669
{"row_security", PGC_USERSET, CLIENT_CONN_STATEMENT,
1670-
gettext_noop("Enable row security."),
1670+
gettext_noop("Enables row security."),
16711671
gettext_noop("When enabled, row security will be applied to all users.")
16721672
},
16731673
&row_security,
@@ -1685,7 +1685,7 @@ struct config_bool ConfigureNamesBool[] =
16851685
},
16861686
{
16871687
{"array_nulls", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1688-
gettext_noop("Enable input of NULL elements in arrays."),
1688+
gettext_noop("Enables input of NULL elements in arrays."),
16891689
gettext_noop("When turned on, unquoted NULL in an array input "
16901690
"value means a null value; "
16911691
"otherwise it is taken literally.")
@@ -1759,7 +1759,7 @@ struct config_bool ConfigureNamesBool[] =
17591759
{
17601760
{
17611761
"optimize_bounded_sort", PGC_USERSET, QUERY_TUNING_METHOD,
1762-
gettext_noop("Enable bounded sorting using heap sort."),
1762+
gettext_noop("Enables bounded sorting using heap sort."),
17631763
NULL,
17641764
GUC_NOT_IN_SAMPLE | GUC_EXPLAIN
17651765
},
@@ -1836,7 +1836,7 @@ struct config_bool ConfigureNamesBool[] =
18361836

18371837
{
18381838
{"synchronize_seqscans", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1839-
gettext_noop("Enable synchronized sequential scans."),
1839+
gettext_noop("Enables synchronized sequential scans."),
18401840
NULL
18411841
},
18421842
&synchronize_seqscans,

0 commit comments

Comments
 (0)