diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2010-06-25 13:11:25 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2010-06-25 13:11:25 +0000 |
commit | 3bdd23932b2a1d0dcae5b10e639108c2430ca9f0 (patch) | |
tree | f36a8c34ed41e060d9022c170df32c76500c03bd /src | |
parent | fd3499be2fde05a7773a6e01b114765f7aa06736 (diff) | |
download | postgresql-3bdd23932b2a1d0dcae5b10e639108c2430ca9f0.tar.gz postgresql-3bdd23932b2a1d0dcae5b10e639108c2430ca9f0.zip |
Fix log_temp_files docs and comments to say bytes not kilobytes.
stat(2) field st_size returns bytes not kilobytes.
Bug found during recent performance tuning for PostgreSQL user.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 48280b460c2..73305486569 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <peter_e@gmx.net>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.556 2010/06/17 17:44:40 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.557 2010/06/25 13:11:25 sriggs Exp $ * *-------------------------------------------------------------------- */ @@ -2051,7 +2051,7 @@ static struct config_int ConfigureNamesInt[] = { {"log_temp_files", PGC_SUSET, LOGGING_WHAT, - gettext_noop("Log the use of temporary files larger than this number of kilobytes."), + gettext_noop("Log the use of temporary files larger than this number of bytes."), gettext_noop("Zero logs all files. The default is -1 (turning this feature off)."), GUC_UNIT_KB }, |