From 0da8034bb4d0f9e7aca28637703d4d6eeec02dfb Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 4 Feb 2007 03:10:55 +0000 Subject: [PATCH] Change vacuum lazy "compacting" warning message to: errhint("Consider using VACUUM FULL on this relation or increasing the configuration parameter \"max_fsm_pages\"."))); --- src/backend/commands/vacuumlazy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/vacuumlazy.c b/src/backend/commands/vacuumlazy.c index 9583b65506..262d1dd2d8 100644 --- a/src/backend/commands/vacuumlazy.c +++ b/src/backend/commands/vacuumlazy.c @@ -513,7 +513,7 @@ lazy_scan_heap(Relation onerel, LVRelStats *vacrelstats, (errmsg("relation \"%s.%s\" contains more than \"max_fsm_pages\" pages with useful free space", get_namespace_name(RelationGetNamespace(onerel)), relname), - errhint("Consider compacting this relation or increasing the configuration parameter \"max_fsm_pages\"."))); + errhint("Consider using VACUUM FULL on this relation or increasing the configuration parameter \"max_fsm_pages\"."))); } -- 2.39.5