1010 * Written by Peter Eisentraut <peter_e@gmx.net>.
1111 *
1212 * IDENTIFICATION
13- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.500 2009/04/06 21:00:52 momjian Exp $
13+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.501 2009/04/07 22:22:19 momjian Exp $
1414 *
1515 *--------------------------------------------------------------------
1616 */
@@ -1316,7 +1316,7 @@ static struct config_int ConfigureNamesInt[] =
13161316{
13171317/* This is PGC_SIGHUP so all backends have the same value. */
13181318{"deadlock_timeout" ,PGC_SIGHUP ,LOCK_MANAGEMENT ,
1319- gettext_noop ("Sets the time to wait on a lock before checking for deadlock." ),
1319+ gettext_noop ("Sets the time to wait on a lock before checking for deadlock, in milliseconds ." ),
13201320NULL ,
13211321GUC_UNIT_MS
13221322},
@@ -1406,7 +1406,7 @@ static struct config_int ConfigureNamesInt[] =
14061406
14071407{
14081408{"maintenance_work_mem" ,PGC_USERSET ,RESOURCES_MEM ,
1409- gettext_noop ("Sets the maximum memory to be used for maintenance operations." ),
1409+ gettext_noop ("Sets the maximum memory to be used for maintenance operations, in kilobytes ." ),
14101410gettext_noop ("This includes operations such as VACUUM and CREATE INDEX." ),
14111411GUC_UNIT_KB
14121412},
@@ -1569,7 +1569,7 @@ static struct config_int ConfigureNamesInt[] =
15691569
15701570{
15711571{"authentication_timeout" ,PGC_SIGHUP ,CONN_AUTH_SECURITY ,
1572- gettext_noop ("Sets the maximum allowed time to complete client authentication." ),
1572+ gettext_noop ("Sets the maximum allowed time to complete client authentication, in seconds ." ),
15731573NULL ,
15741574GUC_UNIT_S
15751575},
@@ -1599,7 +1599,7 @@ static struct config_int ConfigureNamesInt[] =
15991599
16001600{
16011601{"checkpoint_timeout" ,PGC_SIGHUP ,WAL_CHECKPOINTS ,
1602- gettext_noop ("Sets the maximum time between automatic WAL checkpoints." ),
1602+ gettext_noop ("Sets the maximum time between automatic WAL checkpoints, in seconds ." ),
16031603NULL ,
16041604GUC_UNIT_S
16051605},
@@ -1632,7 +1632,7 @@ static struct config_int ConfigureNamesInt[] =
16321632
16331633{
16341634{"wal_writer_delay" ,PGC_SIGHUP ,WAL_SETTINGS ,
1635- gettext_noop ("WAL writer sleep time between WAL flushes." ),
1635+ gettext_noop ("WAL writer sleep time between WAL flushes, in milliseconds ." ),
16361636NULL ,
16371637GUC_UNIT_MS
16381638},
@@ -1673,8 +1673,8 @@ static struct config_int ConfigureNamesInt[] =
16731673
16741674{
16751675{"log_min_duration_statement" ,PGC_SUSET ,LOGGING_WHEN ,
1676- gettext_noop ("Sets the minimum execution timeabove which "
1677- "statements will be logged." ),
1676+ gettext_noop ("Sets the minimum execution time(in milliseconds) above "
1677+ "which statements will be logged." ),
16781678gettext_noop ("Zero prints all queries. -1 turns this feature off." ),
16791679GUC_UNIT_MS
16801680},
@@ -1684,7 +1684,7 @@ static struct config_int ConfigureNamesInt[] =
16841684
16851685{
16861686{"log_autovacuum_min_duration" ,PGC_SIGHUP ,LOGGING_WHAT ,
1687- gettext_noop ("Sets the minimum execution milliseconds above which "
1687+ gettext_noop ("Sets the minimum executionin milliseconds above which "
16881688"autovacuum actions will be logged." ),
16891689gettext_noop ("Zero prints all actions. -1 turns autovacuum logging off." ),
16901690GUC_UNIT_MS
@@ -1695,7 +1695,7 @@ static struct config_int ConfigureNamesInt[] =
16951695
16961696{
16971697{"bgwriter_delay" ,PGC_SIGHUP ,RESOURCES ,
1698- gettext_noop ("Background writer sleep time between rounds." ),
1698+ gettext_noop ("Background writer sleep time between rounds, in milliseconds ." ),
16991699NULL ,
17001700GUC_UNIT_MS
17011701},
@@ -1827,7 +1827,7 @@ static struct config_int ConfigureNamesInt[] =
18271827
18281828{
18291829{"autovacuum_naptime" ,PGC_SIGHUP ,AUTOVACUUM ,
1830- gettext_noop ("Time to sleep between autovacuum runs." ),
1830+ gettext_noop ("Time to sleep between autovacuum runs, in seconds ." ),
18311831NULL ,
18321832GUC_UNIT_S
18331833},