diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-01-10 02:50:01 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-01-10 02:50:01 +0000 |
commit | 77015b59aafe0ec58b2ae15285b419ade6eae818 (patch) | |
tree | 6655bfc2184dad69fc009aa66444b8ca0bb99f9f /src | |
parent | a9742f123c25c7bc5ce0c18e188dba790da4fbe1 (diff) | |
download | postgresql-77015b59aafe0ec58b2ae15285b419ade6eae818.tar.gz postgresql-77015b59aafe0ec58b2ae15285b419ade6eae818.zip |
vacuum_cost_limit has a minimum value of 1, not zero; update
postgresql.conf comment to match.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 8907a5f7d42..022ffe57ae8 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -134,7 +134,7 @@ #vacuum_cost_page_hit = 1 # 0-10000 credits #vacuum_cost_page_miss = 10 # 0-10000 credits #vacuum_cost_page_dirty = 20 # 0-10000 credits -#vacuum_cost_limit = 200 # 0-10000 credits +#vacuum_cost_limit = 200 # 1-10000 credits # - Background Writer - |