From: Bruce Momjian Date: Thu, 10 Jan 2008 02:50:01 +0000 (+0000) Subject: vacuum_cost_limit has a minimum value of 1, not zero; update X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=16dab12763cfcc21b01efa274f172bd8c868962a;p=users%2Fbernd%2Fpostgres.git vacuum_cost_limit has a minimum value of 1, not zero; update postgresql.conf comment to match. --- diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 8907a5f7d4..022ffe57ae 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 -