@@ -703,16 +703,12 @@ const char *const config_group_names[] =
703
703
gettext_noop ("Ungrouped" ),
704
704
/* FILE_LOCATIONS */
705
705
gettext_noop ("File Locations" ),
706
- /* CONN_AUTH */
707
- gettext_noop ("Connections and Authentication" ),
708
706
/* CONN_AUTH_SETTINGS */
709
707
gettext_noop ("Connections and Authentication / Connection Settings" ),
710
708
/* CONN_AUTH_AUTH */
711
709
gettext_noop ("Connections and Authentication / Authentication" ),
712
710
/* CONN_AUTH_SSL */
713
711
gettext_noop ("Connections and Authentication / SSL" ),
714
- /* RESOURCES */
715
- gettext_noop ("Resource Usage" ),
716
712
/* RESOURCES_MEM */
717
713
gettext_noop ("Resource Usage / Memory" ),
718
714
/* RESOURCES_DISK */
@@ -725,20 +721,18 @@ const char *const config_group_names[] =
725
721
gettext_noop ("Resource Usage / Background Writer" ),
726
722
/* RESOURCES_ASYNCHRONOUS */
727
723
gettext_noop ("Resource Usage / Asynchronous Behavior" ),
728
- /* WAL */
729
- gettext_noop ("Write-Ahead Log" ),
730
724
/* WAL_SETTINGS */
731
725
gettext_noop ("Write-Ahead Log / Settings" ),
732
726
/* WAL_CHECKPOINTS */
733
727
gettext_noop ("Write-Ahead Log / Checkpoints" ),
734
728
/* WAL_ARCHIVING */
735
729
gettext_noop ("Write-Ahead Log / Archiving" ),
730
+ /* WAL_RECOVERY */
731
+ gettext_noop ("Write-Ahead Log / Recovery" ),
736
732
/* WAL_ARCHIVE_RECOVERY */
737
733
gettext_noop ("Write-Ahead Log / Archive Recovery" ),
738
734
/* WAL_RECOVERY_TARGET */
739
735
gettext_noop ("Write-Ahead Log / Recovery Target" ),
740
- /* REPLICATION */
741
- gettext_noop ("Replication" ),
742
736
/* REPLICATION_SENDING */
743
737
gettext_noop ("Replication / Sending Servers" ),
744
738
/* REPLICATION_PRIMARY */
@@ -747,8 +741,6 @@ const char *const config_group_names[] =
747
741
gettext_noop ("Replication / Standby Servers" ),
748
742
/* REPLICATION_SUBSCRIBERS */
749
743
gettext_noop ("Replication / Subscribers" ),
750
- /* QUERY_TUNING */
751
- gettext_noop ("Query Tuning" ),
752
744
/* QUERY_TUNING_METHOD */
753
745
gettext_noop ("Query Tuning / Planner Method Configuration" ),
754
746
/* QUERY_TUNING_COST */
@@ -757,26 +749,20 @@ const char *const config_group_names[] =
757
749
gettext_noop ("Query Tuning / Genetic Query Optimizer" ),
758
750
/* QUERY_TUNING_OTHER */
759
751
gettext_noop ("Query Tuning / Other Planner Options" ),
760
- /* LOGGING */
761
- gettext_noop ("Reporting and Logging" ),
762
752
/* LOGGING_WHERE */
763
753
gettext_noop ("Reporting and Logging / Where to Log" ),
764
754
/* LOGGING_WHEN */
765
755
gettext_noop ("Reporting and Logging / When to Log" ),
766
756
/* LOGGING_WHAT */
767
757
gettext_noop ("Reporting and Logging / What to Log" ),
768
758
/* PROCESS_TITLE */
769
- gettext_noop ("Process Title" ),
770
- /* STATS */
771
- gettext_noop ("Statistics" ),
759
+ gettext_noop ("Reporting and Logging / Process Title" ),
772
760
/* STATS_MONITORING */
773
761
gettext_noop ("Statistics / Monitoring" ),
774
762
/* STATS_COLLECTOR */
775
763
gettext_noop ("Statistics / Query and Index Statistics Collector" ),
776
764
/* AUTOVACUUM */
777
765
gettext_noop ("Autovacuum" ),
778
- /* CLIENT_CONN */
779
- gettext_noop ("Client Connection Defaults" ),
780
766
/* CLIENT_CONN_STATEMENT */
781
767
gettext_noop ("Client Connection Defaults / Statement Behavior" ),
782
768
/* CLIENT_CONN_LOCALE */
@@ -787,8 +773,6 @@ const char *const config_group_names[] =
787
773
gettext_noop ("Client Connection Defaults / Other Defaults" ),
788
774
/* LOCK_MANAGEMENT */
789
775
gettext_noop ("Lock Management" ),
790
- /* COMPAT_OPTIONS */
791
- gettext_noop ("Version and Platform Compatibility" ),
792
776
/* COMPAT_OPTIONS_PREVIOUS */
793
777
gettext_noop ("Version and Platform Compatibility / Previous PostgreSQL Versions" ),
794
778
/* COMPAT_OPTIONS_CLIENT */
@@ -1188,7 +1172,7 @@ static struct config_bool ConfigureNamesBool[] =
1188
1172
check_bonjour , NULL , NULL
1189
1173
},
1190
1174
{
1191
- {"track_commit_timestamp" , PGC_POSTMASTER , REPLICATION ,
1175
+ {"track_commit_timestamp" , PGC_POSTMASTER , REPLICATION_SENDING ,
1192
1176
gettext_noop ("Collects transaction commit time." ),
1193
1177
NULL
1194
1178
},
@@ -1297,7 +1281,7 @@ static struct config_bool ConfigureNamesBool[] =
1297
1281
NULL , NULL , NULL
1298
1282
},
1299
1283
{
1300
- {"recovery_prefetch" , PGC_SIGHUP , WAL_SETTINGS ,
1284
+ {"recovery_prefetch" , PGC_SIGHUP , WAL_RECOVERY ,
1301
1285
gettext_noop ("Prefetch referenced blocks during recovery." ),
1302
1286
gettext_noop ("Read ahead of the current replay position to find uncached blocks." )
1303
1287
},
@@ -1306,7 +1290,7 @@ static struct config_bool ConfigureNamesBool[] =
1306
1290
NULL , assign_recovery_prefetch , NULL
1307
1291
},
1308
1292
{
1309
- {"recovery_prefetch_fpw" , PGC_SIGHUP , WAL_SETTINGS ,
1293
+ {"recovery_prefetch_fpw" , PGC_SIGHUP , WAL_RECOVERY ,
1310
1294
gettext_noop ("Prefetch blocks that have full page images in the WAL." ),
1311
1295
gettext_noop ("On some systems, there is no benefit to prefetching pages that will be "
1312
1296
"entirely overwritten, but if the logical page size of the filesystem is "
@@ -1869,7 +1853,7 @@ static struct config_bool ConfigureNamesBool[] =
1869
1853
1870
1854
{
1871
1855
{"integer_datetimes" , PGC_INTERNAL , PRESET_OPTIONS ,
1872
- gettext_noop ("Datetimes are integer based." ),
1856
+ gettext_noop ("Shows whether datetimes are integer based." ),
1873
1857
NULL ,
1874
1858
GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1875
1859
},
@@ -2416,7 +2400,7 @@ static struct config_int ConfigureNamesInt[] =
2416
2400
2417
2401
{
2418
2402
{"data_directory_mode" , PGC_INTERNAL , PRESET_OPTIONS ,
2419
- gettext_noop ("Mode of the data directory." ),
2403
+ gettext_noop ("Shows the mode of the data directory." ),
2420
2404
gettext_noop ("The parameter value is a numeric mode specification "
2421
2405
"in the form accepted by the chmod and umask system "
2422
2406
"calls. (To use the customary octal format the number "
@@ -2772,7 +2756,7 @@ static struct config_int ConfigureNamesInt[] =
2772
2756
},
2773
2757
2774
2758
{
2775
- {"wal_decode_buffer_size" , PGC_POSTMASTER , WAL_ARCHIVE_RECOVERY ,
2759
+ {"wal_decode_buffer_size" , PGC_POSTMASTER , WAL_RECOVERY ,
2776
2760
gettext_noop ("Maximum buffer size for reading ahead in the WAL during recovery." ),
2777
2761
gettext_noop ("This controls the maximum distance we can read ahead in the WAL to prefetch referenced blocks." ),
2778
2762
GUC_UNIT_BYTE
@@ -3393,7 +3377,7 @@ static struct config_int ConfigureNamesInt[] =
3393
3377
},
3394
3378
3395
3379
{
3396
- {"tcp_keepalives_idle" , PGC_USERSET , CLIENT_CONN_OTHER ,
3380
+ {"tcp_keepalives_idle" , PGC_USERSET , CONN_AUTH_SETTINGS ,
3397
3381
gettext_noop ("Time between issuing TCP keepalives." ),
3398
3382
gettext_noop ("A value of 0 uses the system default." ),
3399
3383
GUC_UNIT_S
@@ -3404,7 +3388,7 @@ static struct config_int ConfigureNamesInt[] =
3404
3388
},
3405
3389
3406
3390
{
3407
- {"tcp_keepalives_interval" , PGC_USERSET , CLIENT_CONN_OTHER ,
3391
+ {"tcp_keepalives_interval" , PGC_USERSET , CONN_AUTH_SETTINGS ,
3408
3392
gettext_noop ("Time between TCP keepalive retransmits." ),
3409
3393
gettext_noop ("A value of 0 uses the system default." ),
3410
3394
GUC_UNIT_S
@@ -3426,7 +3410,7 @@ static struct config_int ConfigureNamesInt[] =
3426
3410
},
3427
3411
3428
3412
{
3429
- {"tcp_keepalives_count" , PGC_USERSET , CLIENT_CONN_OTHER ,
3413
+ {"tcp_keepalives_count" , PGC_USERSET , CONN_AUTH_SETTINGS ,
3430
3414
gettext_noop ("Maximum number of TCP keepalive retransmits." ),
3431
3415
gettext_noop ("This controls the number of consecutive keepalive retransmits that can be "
3432
3416
"lost before a connection is considered dead. A value of 0 uses the "
@@ -3506,7 +3490,7 @@ static struct config_int ConfigureNamesInt[] =
3506
3490
},
3507
3491
3508
3492
{
3509
- {"track_activity_query_size" , PGC_POSTMASTER , RESOURCES_MEM ,
3493
+ {"track_activity_query_size" , PGC_POSTMASTER , STATS_COLLECTOR ,
3510
3494
gettext_noop ("Sets the size reserved for pg_stat_activity.query, in bytes." ),
3511
3495
NULL ,
3512
3496
GUC_UNIT_BYTE
@@ -3528,7 +3512,7 @@ static struct config_int ConfigureNamesInt[] =
3528
3512
},
3529
3513
3530
3514
{
3531
- {"tcp_user_timeout" , PGC_USERSET , CLIENT_CONN_OTHER ,
3515
+ {"tcp_user_timeout" , PGC_USERSET , CONN_AUTH_SETTINGS ,
3532
3516
gettext_noop ("TCP user timeout." ),
3533
3517
gettext_noop ("A value of 0 uses the system default." ),
3534
3518
GUC_UNIT_MS
@@ -3573,7 +3557,7 @@ static struct config_int ConfigureNamesInt[] =
3573
3557
},
3574
3558
3575
3559
{
3576
- {"client_connection_check_interval" , PGC_USERSET , CLIENT_CONN_OTHER ,
3560
+ {"client_connection_check_interval" , PGC_USERSET , CONN_AUTH_SETTINGS ,
3577
3561
gettext_noop ("Sets the time interval between checks for disconnection while running queries." ),
3578
3562
NULL ,
3579
3563
GUC_UNIT_MS
@@ -4102,7 +4086,7 @@ static struct config_string ConfigureNamesString[] =
4102
4086
/* See main.c about why defaults for LC_foo are not all alike */
4103
4087
4104
4088
{
4105
- {"lc_collate" , PGC_INTERNAL , CLIENT_CONN_LOCALE ,
4089
+ {"lc_collate" , PGC_INTERNAL , PRESET_OPTIONS ,
4106
4090
gettext_noop ("Shows the collation order locale." ),
4107
4091
NULL ,
4108
4092
GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
@@ -4113,7 +4097,7 @@ static struct config_string ConfigureNamesString[] =
4113
4097
},
4114
4098
4115
4099
{
4116
- {"lc_ctype" , PGC_INTERNAL , CLIENT_CONN_LOCALE ,
4100
+ {"lc_ctype" , PGC_INTERNAL , PRESET_OPTIONS ,
4117
4101
gettext_noop ("Shows the character classification and case conversion locale." ),
4118
4102
NULL ,
4119
4103
GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
@@ -4209,8 +4193,8 @@ static struct config_string ConfigureNamesString[] =
4209
4193
4210
4194
{
4211
4195
/* Can't be set in postgresql.conf */
4212
- {"server_encoding" , PGC_INTERNAL , CLIENT_CONN_LOCALE ,
4213
- gettext_noop ("Sets the server (database) character set encoding." ),
4196
+ {"server_encoding" , PGC_INTERNAL , PRESET_OPTIONS ,
4197
+ gettext_noop ("Shows the server (database) character set encoding." ),
4214
4198
NULL ,
4215
4199
GUC_IS_NAME | GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
4216
4200
},
@@ -4429,7 +4413,7 @@ static struct config_string ConfigureNamesString[] =
4429
4413
4430
4414
{
4431
4415
{"ssl_library" , PGC_INTERNAL , PRESET_OPTIONS ,
4432
- gettext_noop ("Name of the SSL library." ),
4416
+ gettext_noop ("Shows the name of the SSL library." ),
4433
4417
NULL ,
4434
4418
GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
4435
4419
},
0 commit comments