@@ -2133,8 +2133,8 @@ static struct config_int ConfigureNamesInt[] =
2133
2133
{
2134
2134
{
2135
2135
{"archive_timeout" , PGC_SIGHUP , WAL_ARCHIVING ,
2136
- gettext_noop ("Forces a switch to the next WAL file if a "
2137
- "new file has not been started within N seconds ." ),
2136
+ gettext_noop ("Sets the amount of time to wait before forcing a "
2137
+ "switch to the next WAL file ." ),
2138
2138
NULL ,
2139
2139
GUC_UNIT_S
2140
2140
},
@@ -2144,7 +2144,8 @@ static struct config_int ConfigureNamesInt[] =
2144
2144
},
2145
2145
{
2146
2146
{"post_auth_delay" , PGC_BACKEND , DEVELOPER_OPTIONS ,
2147
- gettext_noop ("Waits N seconds on connection startup after authentication." ),
2147
+ gettext_noop ("Sets the amount of time to wait after "
2148
+ "authentication on connection startup." ),
2148
2149
gettext_noop ("This allows attaching a debugger to the process." ),
2149
2150
GUC_NOT_IN_SAMPLE | GUC_UNIT_S
2150
2151
},
@@ -2764,7 +2765,8 @@ static struct config_int ConfigureNamesInt[] =
2764
2765
{
2765
2766
/* Not for general use */
2766
2767
{"pre_auth_delay" , PGC_SIGHUP , DEVELOPER_OPTIONS ,
2767
- gettext_noop ("Waits N seconds on connection startup before authentication." ),
2768
+ gettext_noop ("Sets the amount of time to wait before "
2769
+ "authentication on connection startup." ),
2768
2770
gettext_noop ("This allows attaching a debugger to the process." ),
2769
2771
GUC_NOT_IN_SAMPLE | GUC_UNIT_S
2770
2772
},
@@ -2821,11 +2823,12 @@ static struct config_int ConfigureNamesInt[] =
2821
2823
2822
2824
{
2823
2825
{"checkpoint_warning" , PGC_SIGHUP , WAL_CHECKPOINTS ,
2824
- gettext_noop ("Enables warnings if checkpoint segments are filled more "
2825
- "frequently than this ." ),
2826
+ gettext_noop ("Sets the maximum time before warning if checkpoints "
2827
+ "triggered by WAL volume happen too frequently ." ),
2826
2828
gettext_noop ("Write a message to the server log if checkpoints "
2827
- "caused by the filling of checkpoint segment files happens more "
2828
- "frequently than this number of seconds. Zero turns off the warning." ),
2829
+ "caused by the filling of WAL segment files happen more "
2830
+ "frequently than this amount of time. "
2831
+ "Zero turns off the warning." ),
2829
2832
GUC_UNIT_S
2830
2833
},
2831
2834
& CheckPointWarning ,
@@ -3008,7 +3011,8 @@ static struct config_int ConfigureNamesInt[] =
3008
3011
3009
3012
{
3010
3013
{"log_parameter_max_length" , PGC_SUSET , LOGGING_WHAT ,
3011
- gettext_noop ("When logging statements, limit logged parameter values to first N bytes." ),
3014
+ gettext_noop ("Sets the maximum length in bytes of data logged for bind "
3015
+ "parameter values when logging statements." ),
3012
3016
gettext_noop ("-1 to print values in full." ),
3013
3017
GUC_UNIT_BYTE
3014
3018
},
@@ -3019,7 +3023,8 @@ static struct config_int ConfigureNamesInt[] =
3019
3023
3020
3024
{
3021
3025
{"log_parameter_max_length_on_error" , PGC_USERSET , LOGGING_WHAT ,
3022
- gettext_noop ("When reporting an error, limit logged parameter values to first N bytes." ),
3026
+ gettext_noop ("Sets the maximum length in bytes of data logged for bind "
3027
+ "parameter values when logging statements, on error." ),
3023
3028
gettext_noop ("-1 to print values in full." ),
3024
3029
GUC_UNIT_BYTE
3025
3030
},
@@ -3145,7 +3150,8 @@ static struct config_int ConfigureNamesInt[] =
3145
3150
3146
3151
{
3147
3152
{"log_rotation_age" , PGC_SIGHUP , LOGGING_WHERE ,
3148
- gettext_noop ("Automatic log file rotation will occur after N minutes." ),
3153
+ gettext_noop ("Sets the amount of time to wait before forcing "
3154
+ "log file rotation." ),
3149
3155
NULL ,
3150
3156
GUC_UNIT_MIN
3151
3157
},
@@ -3156,7 +3162,8 @@ static struct config_int ConfigureNamesInt[] =
3156
3162
3157
3163
{
3158
3164
{"log_rotation_size" , PGC_SIGHUP , LOGGING_WHERE ,
3159
- gettext_noop ("Automatic log file rotation will occur after N kilobytes." ),
3165
+ gettext_noop ("Sets the maximum size a log file can reach before "
3166
+ "being rotated." ),
3160
3167
NULL ,
3161
3168
GUC_UNIT_KB
3162
3169
},
0 commit comments