From 77015b59aafe0ec58b2ae15285b419ade6eae818 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 10 Jan 2008 02:50:01 +0000 Subject: [PATCH] vacuum_cost_limit has a minimum value of 1, not zero; update postgresql.conf comment to match. --- src/backend/utils/misc/postgresql.conf.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 - -- 2.40.0