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-Tag: REL8_3_RC2~44 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77015b59aafe0ec58b2ae15285b419ade6eae818;p=postgresql 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 -