File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.282 2010/06/22 02:57:49 rhaas Exp $ -->
1
+ <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.283 2010/06/25 13:11:25 sriggs Exp $ -->
2
2
3
3
<chapter Id="runtime-config">
4
4
<title>Server Configuration</title>
@@ -3566,7 +3566,7 @@ FROM pg_stat_activity;
3566
3566
A log entry is made for each temporary file when it is deleted.
3567
3567
A value of zero logs all temporary file information, while positive
3568
3568
values log only files whose size is greater than or equal to
3569
- the specified number of kilobytes . The
3569
+ the specified number of bytes . The
3570
3570
default setting is <literal>-1</>, which disables such logging.
3571
3571
Only superusers can change this setting.
3572
3572
</para>
Original file line number Diff line number Diff line change 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.556 2010/06/17 17:44:40 tgl Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.557 2010/06/25 13:11:25 sriggs Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -2051,7 +2051,7 @@ static struct config_int ConfigureNamesInt[] =
2051
2051
2052
2052
{
2053
2053
{"log_temp_files" , PGC_SUSET , LOGGING_WHAT ,
2054
- gettext_noop ("Log the use of temporary files larger than this number of kilobytes ." ),
2054
+ gettext_noop ("Log the use of temporary files larger than this number of bytes ." ),
2055
2055
gettext_noop ("Zero logs all files. The default is -1 (turning this feature off)." ),
2056
2056
GUC_UNIT_KB
2057
2057
},
You can’t perform that action at this time.
0 commit comments