File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 36
36
*
37
37
*
38
38
* IDENTIFICATION
39
- * $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.84 2007/02/21 22:15:21 momjian Exp $
39
+ * $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.85 2007/02/21 22:47:45 momjian Exp $
40
40
*
41
41
*-------------------------------------------------------------------------
42
42
*/
@@ -185,10 +185,10 @@ lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt)
185
185
(errmsg ("relation \"%s.%s\" contains more than \"max_fsm_pages\" pages with useful free space" ,
186
186
get_namespace_name (RelationGetNamespace (onerel )),
187
187
RelationGetRelationName (onerel )),
188
- errhint ("Consider%sincreasing the configuration parameter \"max_fsm_pages\"." ,
189
- /* Only suggest VACUUM FULL if 20% free */
190
- ( vacrelstats -> tot_free_pages > vacrelstats -> rel_pages * 0.20
191
- ? " using VACUUM FULL on this relation or " : " " ))));
188
+ errhint (( vacrelstats -> tot_free_pages > vacrelstats -> rel_pages * 0.20 ?
189
+ /* Only suggest VACUUM FULL if 20% free */
190
+ "Consider using VACUUM FULL on this relation or increasing the configuration parameter \"max_fsm_pages\"." :
191
+ "Consider increasing the configuration parameter \"max_fsm_pages\". " ))));
192
192
193
193
/* Update statistics in pg_class */
194
194
vac_update_relstats (RelationGetRelid (onerel ),
You can’t perform that action at this time.
0 commit comments