10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.360 2006/11/29 14:50:07 petere Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.361 2006/12/06 17:35:49 neilc Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -587,7 +587,7 @@ static struct config_bool ConfigureNamesBool[] =
587
587
{
588
588
/* currently undocumented, so don't show in SHOW ALL */
589
589
{"exit_on_error" , PGC_USERSET , UNGROUPED ,
590
- gettext_noop ("no description available" ),
590
+ gettext_noop ("No description available. " ),
591
591
NULL ,
592
592
GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE
593
593
},
@@ -669,7 +669,7 @@ static struct config_bool ConfigureNamesBool[] =
669
669
#ifdef BTREE_BUILD_STATS
670
670
{
671
671
{"log_btree_build_stats" , PGC_SUSET , DEVELOPER_OPTIONS ,
672
- gettext_noop ("no description available" ),
672
+ gettext_noop ("No description available. " ),
673
673
NULL ,
674
674
GUC_NOT_IN_SAMPLE
675
675
},
@@ -761,7 +761,7 @@ static struct config_bool ConfigureNamesBool[] =
761
761
#ifdef LOCK_DEBUG
762
762
{
763
763
{"trace_locks" , PGC_SUSET , DEVELOPER_OPTIONS ,
764
- gettext_noop ("no description available" ),
764
+ gettext_noop ("No description available. " ),
765
765
NULL ,
766
766
GUC_NOT_IN_SAMPLE
767
767
},
@@ -770,7 +770,7 @@ static struct config_bool ConfigureNamesBool[] =
770
770
},
771
771
{
772
772
{"trace_userlocks" , PGC_SUSET , DEVELOPER_OPTIONS ,
773
- gettext_noop ("no description available" ),
773
+ gettext_noop ("No description available. " ),
774
774
NULL ,
775
775
GUC_NOT_IN_SAMPLE
776
776
},
@@ -779,7 +779,7 @@ static struct config_bool ConfigureNamesBool[] =
779
779
},
780
780
{
781
781
{"trace_lwlocks" , PGC_SUSET , DEVELOPER_OPTIONS ,
782
- gettext_noop ("no description available" ),
782
+ gettext_noop ("No description available. " ),
783
783
NULL ,
784
784
GUC_NOT_IN_SAMPLE
785
785
},
@@ -788,7 +788,7 @@ static struct config_bool ConfigureNamesBool[] =
788
788
},
789
789
{
790
790
{"debug_deadlocks" , PGC_SUSET , DEVELOPER_OPTIONS ,
791
- gettext_noop ("no description available" ),
791
+ gettext_noop ("No description available. " ),
792
792
NULL ,
793
793
GUC_NOT_IN_SAMPLE
794
794
},
@@ -982,7 +982,7 @@ static struct config_bool ConfigureNamesBool[] =
982
982
983
983
{
984
984
{"standard_conforming_strings" , PGC_USERSET , COMPAT_OPTIONS_PREVIOUS ,
985
- gettext_noop ("'...' strings treat backslashes literally." ),
985
+ gettext_noop ("Causes '...' strings to treat backslashes literally." ),
986
986
NULL ,
987
987
GUC_REPORT
988
988
},
@@ -1050,8 +1050,8 @@ static struct config_int ConfigureNamesInt[] =
1050
1050
},
1051
1051
{
1052
1052
{"from_collapse_limit" , PGC_USERSET , QUERY_TUNING_OTHER ,
1053
- gettext_noop ("Sets the FROM-list size beyond which subqueries are not "
1054
- "collapsed." ),
1053
+ gettext_noop ("Sets the FROM-list size beyond which subqueries "
1054
+ "are not collapsed." ),
1055
1055
gettext_noop ("The planner will merge subqueries into upper "
1056
1056
"queries if the resulting FROM list would have no more than "
1057
1057
"this many items." )
@@ -1061,11 +1061,11 @@ static struct config_int ConfigureNamesInt[] =
1061
1061
},
1062
1062
{
1063
1063
{"join_collapse_limit" , PGC_USERSET , QUERY_TUNING_OTHER ,
1064
- gettext_noop ("Sets the FROM-list size beyond which JOIN constructs are not "
1065
- "flattened." ),
1064
+ gettext_noop ("Sets the FROM-list size beyond which JOIN "
1065
+ "constructs are not flattened." ),
1066
1066
gettext_noop ("The planner will flatten explicit JOIN "
1067
- "constructs into lists of FROM items whenever a list of no more "
1068
- "than this many items would result." )
1067
+ "constructs into lists of FROM items whenever a "
1068
+ "list of no more than this many items would result." )
1069
1069
},
1070
1070
& join_collapse_limit ,
1071
1071
8 , 1 , INT_MAX , NULL , NULL
@@ -1105,7 +1105,7 @@ static struct config_int ConfigureNamesInt[] =
1105
1105
1106
1106
{
1107
1107
{"deadlock_timeout" , PGC_SIGHUP , LOCK_MANAGEMENT ,
1108
- gettext_noop ("The time in milliseconds to wait on lock before checking for deadlock." ),
1108
+ gettext_noop ("Sets the time to wait on a lock before checking for deadlock." ),
1109
1109
NULL ,
1110
1110
GUC_UNIT_MS
1111
1111
},
@@ -1322,7 +1322,7 @@ static struct config_int ConfigureNamesInt[] =
1322
1322
1323
1323
{
1324
1324
{"statement_timeout" , PGC_USERSET , CLIENT_CONN_STATEMENT ,
1325
- gettext_noop ("Sets the maximum allowed duration (in milliseconds) of any statement." ),
1325
+ gettext_noop ("Sets the maximum allowed duration of any statement." ),
1326
1326
gettext_noop ("A value of 0 turns off the timeout." ),
1327
1327
GUC_UNIT_MS
1328
1328
},
@@ -1369,7 +1369,7 @@ static struct config_int ConfigureNamesInt[] =
1369
1369
1370
1370
{
1371
1371
{"authentication_timeout" , PGC_SIGHUP , CONN_AUTH_SECURITY ,
1372
- gettext_noop ("Sets the maximum time in seconds to complete client authentication." ),
1372
+ gettext_noop ("Sets the maximum allowed time to complete client authentication." ),
1373
1373
NULL ,
1374
1374
GUC_UNIT_S
1375
1375
},
@@ -1380,8 +1380,8 @@ static struct config_int ConfigureNamesInt[] =
1380
1380
{
1381
1381
/* Not for general use */
1382
1382
{"pre_auth_delay" , PGC_SIGHUP , DEVELOPER_OPTIONS ,
1383
- gettext_noop ("no description available " ),
1384
- NULL ,
1383
+ gettext_noop ("Waits N seconds on connection startup before authentication. " ),
1384
+ gettext_noop ( "This allows attaching a debugger to the process." ) ,
1385
1385
GUC_NOT_IN_SAMPLE | GUC_UNIT_S
1386
1386
},
1387
1387
& PreAuthDelay ,
@@ -1399,7 +1399,7 @@ static struct config_int ConfigureNamesInt[] =
1399
1399
1400
1400
{
1401
1401
{"checkpoint_timeout" , PGC_SIGHUP , WAL_CHECKPOINTS ,
1402
- gettext_noop ("Sets the maximum time in seconds between automatic WAL checkpoints." ),
1402
+ gettext_noop ("Sets the maximum time between automatic WAL checkpoints." ),
1403
1403
NULL ,
1404
1404
GUC_UNIT_S
1405
1405
},
@@ -1409,8 +1409,8 @@ static struct config_int ConfigureNamesInt[] =
1409
1409
1410
1410
{
1411
1411
{"checkpoint_warning" , PGC_SIGHUP , WAL_CHECKPOINTS ,
1412
- gettext_noop ("Logs if filling of checkpoint segments happens more "
1413
- "frequently than this (in seconds) ." ),
1412
+ gettext_noop ("Enables warnings if checkpoint segments are filled more "
1413
+ "frequently than this." ),
1414
1414
gettext_noop ("Write a message to the server log if checkpoints "
1415
1415
"caused by the filling of checkpoint segment files happens more "
1416
1416
"frequently than this number of seconds. Zero turns off the warning." ),
@@ -1463,7 +1463,7 @@ static struct config_int ConfigureNamesInt[] =
1463
1463
1464
1464
{
1465
1465
{"log_min_duration_statement" , PGC_SUSET , LOGGING_WHEN ,
1466
- gettext_noop ("Sets the minimum execution time in milliseconds above which statements will "
1466
+ gettext_noop ("Sets the minimum execution time above which statements will "
1467
1467
"be logged." ),
1468
1468
gettext_noop ("Zero prints all queries. The default is -1 (turning this feature off)." ),
1469
1469
GUC_UNIT_MS
@@ -1474,7 +1474,7 @@ static struct config_int ConfigureNamesInt[] =
1474
1474
1475
1475
{
1476
1476
{"bgwriter_delay" , PGC_SIGHUP , RESOURCES ,
1477
- gettext_noop ("Background writer sleep time between rounds in milliseconds " ),
1477
+ gettext_noop ("Background writer sleep time between rounds. " ),
1478
1478
NULL ,
1479
1479
GUC_UNIT_MS
1480
1480
},
@@ -1484,7 +1484,7 @@ static struct config_int ConfigureNamesInt[] =
1484
1484
1485
1485
{
1486
1486
{"bgwriter_lru_maxpages" , PGC_SIGHUP , RESOURCES ,
1487
- gettext_noop ("Background writer maximum number of LRU pages to flush per round" ),
1487
+ gettext_noop ("Background writer maximum number of LRU pages to flush per round. " ),
1488
1488
NULL
1489
1489
},
1490
1490
& bgwriter_lru_maxpages ,
@@ -1493,7 +1493,7 @@ static struct config_int ConfigureNamesInt[] =
1493
1493
1494
1494
{
1495
1495
{"bgwriter_all_maxpages" , PGC_SIGHUP , RESOURCES ,
1496
- gettext_noop ("Background writer maximum number of all pages to flush per round" ),
1496
+ gettext_noop ("Background writer maximum number of all pages to flush per round. " ),
1497
1497
NULL
1498
1498
},
1499
1499
& bgwriter_all_maxpages ,
@@ -1502,7 +1502,7 @@ static struct config_int ConfigureNamesInt[] =
1502
1502
1503
1503
{
1504
1504
{"log_rotation_age" , PGC_SIGHUP , LOGGING_WHERE ,
1505
- gettext_noop ("Automatic log file rotation will occur after N minutes" ),
1505
+ gettext_noop ("Automatic log file rotation will occur after N minutes. " ),
1506
1506
NULL ,
1507
1507
GUC_UNIT_MIN
1508
1508
},
@@ -1512,7 +1512,7 @@ static struct config_int ConfigureNamesInt[] =
1512
1512
1513
1513
{
1514
1514
{"log_rotation_size" , PGC_SIGHUP , LOGGING_WHERE ,
1515
- gettext_noop ("Automatic log file rotation will occur after N kilobytes" ),
1515
+ gettext_noop ("Automatic log file rotation will occur after N kilobytes. " ),
1516
1516
NULL ,
1517
1517
GUC_UNIT_KB
1518
1518
},
@@ -1542,7 +1542,7 @@ static struct config_int ConfigureNamesInt[] =
1542
1542
1543
1543
{
1544
1544
{"max_identifier_length" , PGC_INTERNAL , PRESET_OPTIONS ,
1545
- gettext_noop ("Shows the maximum identifier length" ),
1545
+ gettext_noop ("Shows the maximum identifier length. " ),
1546
1546
NULL ,
1547
1547
GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1548
1548
},
@@ -1552,7 +1552,7 @@ static struct config_int ConfigureNamesInt[] =
1552
1552
1553
1553
{
1554
1554
{"block_size" , PGC_INTERNAL , PRESET_OPTIONS ,
1555
- gettext_noop ("Shows size of a disk block" ),
1555
+ gettext_noop ("Shows the size of a disk block. " ),
1556
1556
NULL ,
1557
1557
GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1558
1558
},
@@ -1562,7 +1562,7 @@ static struct config_int ConfigureNamesInt[] =
1562
1562
1563
1563
{
1564
1564
{"autovacuum_naptime" , PGC_SIGHUP , AUTOVACUUM ,
1565
- gettext_noop ("Time to sleep between autovacuum runs, in seconds ." ),
1565
+ gettext_noop ("Time to sleep between autovacuum runs." ),
1566
1566
NULL ,
1567
1567
GUC_UNIT_S
1568
1568
},
@@ -1597,7 +1597,7 @@ static struct config_int ConfigureNamesInt[] =
1597
1597
1598
1598
{
1599
1599
{"tcp_keepalives_idle" , PGC_USERSET , CLIENT_CONN_OTHER ,
1600
- gettext_noop ("Seconds between issuing TCP keepalives." ),
1600
+ gettext_noop ("Time between issuing TCP keepalives." ),
1601
1601
gettext_noop ("A value of 0 uses the system default." ),
1602
1602
GUC_UNIT_S
1603
1603
},
@@ -1607,7 +1607,7 @@ static struct config_int ConfigureNamesInt[] =
1607
1607
1608
1608
{
1609
1609
{"tcp_keepalives_interval" , PGC_USERSET , CLIENT_CONN_OTHER ,
1610
- gettext_noop ("Seconds between TCP keepalive retransmits." ),
1610
+ gettext_noop ("Time between TCP keepalive retransmits." ),
1611
1611
gettext_noop ("A value of 0 uses the system default." ),
1612
1612
GUC_UNIT_S
1613
1613
},
@@ -1638,7 +1638,7 @@ static struct config_int ConfigureNamesInt[] =
1638
1638
1639
1639
{
1640
1640
{"effective_cache_size" , PGC_USERSET , QUERY_TUNING_COST ,
1641
- gettext_noop ("Sets the planner's assumption about size of the disk cache." ),
1641
+ gettext_noop ("Sets the planner's assumption about the size of the disk cache." ),
1642
1642
gettext_noop ("That is, the portion of the kernel's disk cache that "
1643
1643
"will be used for PostgreSQL data files. This is measured in disk "
1644
1644
"pages, which are normally 8 kB each." ),
@@ -1726,7 +1726,7 @@ static struct config_real ConfigureNamesReal[] =
1726
1726
1727
1727
{
1728
1728
{"bgwriter_lru_percent" , PGC_SIGHUP , RESOURCES ,
1729
- gettext_noop ("Background writer percentage of LRU buffers to flush per round" ),
1729
+ gettext_noop ("Background writer percentage of LRU buffers to flush per round. " ),
1730
1730
NULL
1731
1731
},
1732
1732
& bgwriter_lru_percent ,
@@ -1735,7 +1735,7 @@ static struct config_real ConfigureNamesReal[] =
1735
1735
1736
1736
{
1737
1737
{"bgwriter_all_percent" , PGC_SIGHUP , RESOURCES ,
1738
- gettext_noop ("Background writer percentage of all buffers to flush per round" ),
1738
+ gettext_noop ("Background writer percentage of all buffers to flush per round. " ),
1739
1739
NULL
1740
1740
},
1741
1741
& bgwriter_all_percent ,
@@ -1780,8 +1780,8 @@ static struct config_string ConfigureNamesString[] =
1780
1780
{
1781
1781
{
1782
1782
{"archive_command" , PGC_SIGHUP , WAL_SETTINGS ,
1783
- gettext_noop ("WAL archiving command." ),
1784
- gettext_noop ( "The shell command that will be called to archive a WAL file." )
1783
+ gettext_noop ("Sets the shell command that will be called to archive a WAL file ." ),
1784
+ NULL
1785
1785
},
1786
1786
& XLogArchiveCommand ,
1787
1787
"" , NULL , NULL
@@ -1858,8 +1858,8 @@ static struct config_string ConfigureNamesString[] =
1858
1858
1859
1859
{
1860
1860
{"log_line_prefix" , PGC_SIGHUP , LOGGING_WHAT ,
1861
- gettext_noop ("Controls information prefixed to each log line" ),
1862
- gettext_noop ("if blank no prefix is used" )
1861
+ gettext_noop ("Controls information prefixed to each log line. " ),
1862
+ gettext_noop ("If blank, no prefix is used. " )
1863
1863
},
1864
1864
& Log_line_prefix ,
1865
1865
"" , NULL , NULL
@@ -2150,7 +2150,7 @@ static struct config_string ConfigureNamesString[] =
2150
2150
},
2151
2151
{
2152
2152
{"timezone_abbreviations" , PGC_USERSET , CLIENT_CONN_LOCALE ,
2153
- gettext_noop ("Selects a file of time zone abbreviations" ),
2153
+ gettext_noop ("Selects a file of time zone abbreviations. " ),
2154
2154
NULL ,
2155
2155
},
2156
2156
& timezone_abbreviations_string ,
@@ -2170,8 +2170,8 @@ static struct config_string ConfigureNamesString[] =
2170
2170
{
2171
2171
{"unix_socket_group" , PGC_POSTMASTER , CONN_AUTH_SETTINGS ,
2172
2172
gettext_noop ("Sets the owning group of the Unix-domain socket." ),
2173
- gettext_noop ("( The owning user of the socket is always the user "
2174
- "that starts the server.) " )
2173
+ gettext_noop ("The owning user of the socket is always the user "
2174
+ "that starts the server." )
2175
2175
},
2176
2176
& Unix_socket_group ,
2177
2177
"" , NULL , NULL
@@ -2199,7 +2199,7 @@ static struct config_string ConfigureNamesString[] =
2199
2199
2200
2200
{
2201
2201
{"wal_sync_method" , PGC_SIGHUP , WAL_SETTINGS ,
2202
- gettext_noop ("Selects the method used for forcing WAL updates out to disk." ),
2202
+ gettext_noop ("Selects the method used for forcing WAL updates to disk." ),
2203
2203
NULL
2204
2204
},
2205
2205
& XLOG_sync_method ,
@@ -2238,7 +2238,7 @@ static struct config_string ConfigureNamesString[] =
2238
2238
2239
2239
{
2240
2240
{"hba_file" , PGC_POSTMASTER , FILE_LOCATIONS ,
2241
- gettext_noop ("Sets the server's \"hba\" configuration file" ),
2241
+ gettext_noop ("Sets the server's \"hba\" configuration file. " ),
2242
2242
NULL ,
2243
2243
GUC_SUPERUSER_ONLY
2244
2244
},
@@ -2248,7 +2248,7 @@ static struct config_string ConfigureNamesString[] =
2248
2248
2249
2249
{
2250
2250
{"ident_file" , PGC_POSTMASTER , FILE_LOCATIONS ,
2251
- gettext_noop ("Sets the server's \"ident\" configuration file" ),
2251
+ gettext_noop ("Sets the server's \"ident\" configuration file. " ),
2252
2252
NULL ,
2253
2253
GUC_SUPERUSER_ONLY
2254
2254
},
0 commit comments