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.501 2009/04/07 22:22:19 momjian Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.502 2009/04/07 23:27:34 momjian Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -1316,7 +1316,7 @@ static struct config_int ConfigureNamesInt[] =
1316
1316
{
1317
1317
/* This is PGC_SIGHUP so all backends have the same value. */
1318
1318
{"deadlock_timeout" , PGC_SIGHUP , LOCK_MANAGEMENT ,
1319
- gettext_noop ("Sets the time to wait on a lock before checking for deadlock, in milliseconds ." ),
1319
+ gettext_noop ("Sets the time to wait on a lock before checking for deadlock." ),
1320
1320
NULL ,
1321
1321
GUC_UNIT_MS
1322
1322
},
@@ -1406,7 +1406,7 @@ static struct config_int ConfigureNamesInt[] =
1406
1406
1407
1407
{
1408
1408
{"maintenance_work_mem" , PGC_USERSET , RESOURCES_MEM ,
1409
- gettext_noop ("Sets the maximum memory to be used for maintenance operations, in kilobytes ." ),
1409
+ gettext_noop ("Sets the maximum memory to be used for maintenance operations." ),
1410
1410
gettext_noop ("This includes operations such as VACUUM and CREATE INDEX." ),
1411
1411
GUC_UNIT_KB
1412
1412
},
@@ -1530,7 +1530,7 @@ static struct config_int ConfigureNamesInt[] =
1530
1530
1531
1531
{
1532
1532
{"statement_timeout" , PGC_USERSET , CLIENT_CONN_STATEMENT ,
1533
- gettext_noop ("Sets the maximum duration of any statement, in milliseconds ." ),
1533
+ gettext_noop ("Sets the maximum allowed duration of any statement." ),
1534
1534
gettext_noop ("A value of 0 turns off the timeout." ),
1535
1535
GUC_UNIT_MS
1536
1536
},
@@ -1569,7 +1569,7 @@ static struct config_int ConfigureNamesInt[] =
1569
1569
1570
1570
{
1571
1571
{"authentication_timeout" , PGC_SIGHUP , CONN_AUTH_SECURITY ,
1572
- gettext_noop ("Sets the maximum allowed time to complete client authentication, in seconds ." ),
1572
+ gettext_noop ("Sets the maximum allowed time to complete client authentication." ),
1573
1573
NULL ,
1574
1574
GUC_UNIT_S
1575
1575
},
@@ -1599,7 +1599,7 @@ static struct config_int ConfigureNamesInt[] =
1599
1599
1600
1600
{
1601
1601
{"checkpoint_timeout" , PGC_SIGHUP , WAL_CHECKPOINTS ,
1602
- gettext_noop ("Sets the maximum time between automatic WAL checkpoints, in seconds ." ),
1602
+ gettext_noop ("Sets the maximum time between automatic WAL checkpoints." ),
1603
1603
NULL ,
1604
1604
GUC_UNIT_S
1605
1605
},
@@ -1632,7 +1632,7 @@ static struct config_int ConfigureNamesInt[] =
1632
1632
1633
1633
{
1634
1634
{"wal_writer_delay" , PGC_SIGHUP , WAL_SETTINGS ,
1635
- gettext_noop ("WAL writer sleep time between WAL flushes, in milliseconds ." ),
1635
+ gettext_noop ("WAL writer sleep time between WAL flushes." ),
1636
1636
NULL ,
1637
1637
GUC_UNIT_MS
1638
1638
},
@@ -1673,8 +1673,8 @@ static struct config_int ConfigureNamesInt[] =
1673
1673
1674
1674
{
1675
1675
{"log_min_duration_statement" , PGC_SUSET , LOGGING_WHEN ,
1676
- gettext_noop ("Sets the minimum execution time (in milliseconds) above "
1677
- "which statements will be logged." ),
1676
+ gettext_noop ("Sets the minimum execution time above which "
1677
+ "statements will be logged." ),
1678
1678
gettext_noop ("Zero prints all queries. -1 turns this feature off." ),
1679
1679
GUC_UNIT_MS
1680
1680
},
@@ -1684,7 +1684,7 @@ static struct config_int ConfigureNamesInt[] =
1684
1684
1685
1685
{
1686
1686
{"log_autovacuum_min_duration" , PGC_SIGHUP , LOGGING_WHAT ,
1687
- gettext_noop ("Sets the minimum execution in milliseconds above which "
1687
+ gettext_noop ("Sets the minimum execution time above which "
1688
1688
"autovacuum actions will be logged." ),
1689
1689
gettext_noop ("Zero prints all actions. -1 turns autovacuum logging off." ),
1690
1690
GUC_UNIT_MS
@@ -1695,7 +1695,7 @@ static struct config_int ConfigureNamesInt[] =
1695
1695
1696
1696
{
1697
1697
{"bgwriter_delay" , PGC_SIGHUP , RESOURCES ,
1698
- gettext_noop ("Background writer sleep time between rounds, in milliseconds ." ),
1698
+ gettext_noop ("Background writer sleep time between rounds." ),
1699
1699
NULL ,
1700
1700
GUC_UNIT_MS
1701
1701
},
@@ -1827,7 +1827,7 @@ static struct config_int ConfigureNamesInt[] =
1827
1827
1828
1828
{
1829
1829
{"autovacuum_naptime" , PGC_SIGHUP , AUTOVACUUM ,
1830
- gettext_noop ("Time to sleep between autovacuum runs, in seconds ." ),
1830
+ gettext_noop ("Time to sleep between autovacuum runs." ),
1831
1831
NULL ,
1832
1832
GUC_UNIT_S
1833
1833
},
@@ -1871,7 +1871,7 @@ static struct config_int ConfigureNamesInt[] =
1871
1871
1872
1872
{
1873
1873
{"tcp_keepalives_idle" , PGC_USERSET , CLIENT_CONN_OTHER ,
1874
- gettext_noop ("Seconds between issuing TCP keepalives." ),
1874
+ gettext_noop ("Time between issuing TCP keepalives." ),
1875
1875
gettext_noop ("A value of 0 uses the system default." ),
1876
1876
GUC_UNIT_S
1877
1877
},
@@ -1881,7 +1881,7 @@ static struct config_int ConfigureNamesInt[] =
1881
1881
1882
1882
{
1883
1883
{"tcp_keepalives_interval" , PGC_USERSET , CLIENT_CONN_OTHER ,
1884
- gettext_noop ("Seconds between TCP keepalive retransmits." ),
1884
+ gettext_noop ("Time between TCP keepalive retransmits." ),
1885
1885
gettext_noop ("A value of 0 uses the system default." ),
1886
1886
GUC_UNIT_S
1887
1887
},
0 commit comments