@@ -356,17 +356,17 @@ lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt,
356
356
get_namespace_name (RelationGetNamespace (onerel )),
357
357
RelationGetRelationName (onerel ),
358
358
vacrelstats -> num_index_scans );
359
- appendStringInfo (& buf , _ ("pages: %d removed, %d remain\n" ),
359
+ appendStringInfo (& buf , _ ("pages: %u removed, %u remain\n" ),
360
360
vacrelstats -> pages_removed ,
361
361
vacrelstats -> rel_pages );
362
362
if (vacrelstats -> pinned_pages > 0 )
363
363
{
364
364
if (scan_all )
365
- appendStringInfo (& buf , _ ("waited for %d buffer pins\n" ),
365
+ appendStringInfo (& buf , _ ("waited for %u buffer pins\n" ),
366
366
vacrelstats -> pinned_pages );
367
367
else
368
368
appendStringInfo (& buf ,
369
- _ ("skipped %d pages due to buffer pins\n" ),
369
+ _ ("skipped %u pages due to buffer pins\n" ),
370
370
vacrelstats -> pinned_pages );
371
371
}
372
372
appendStringInfo (& buf ,
@@ -1132,7 +1132,7 @@ lazy_scan_heap(Relation onerel, LVRelStats *vacrelstats,
1132
1132
if (vacrelstats -> pinned_pages > 0 )
1133
1133
{
1134
1134
if (scan_all )
1135
- appendStringInfo (& buf , _ ("Waited for %d buffer pins.\n" ),
1135
+ appendStringInfo (& buf , _ ("Waited for %u buffer pins.\n" ),
1136
1136
vacrelstats -> pinned_pages );
1137
1137
else
1138
1138
appendStringInfo (& buf , _ ("Skipped %u pages due to buffer pins.\n" ),
0 commit comments