1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-09 22:41:56 +03:00

Use correct format placeholder for block numbers

Should be %u rather than %d.
This commit is contained in:
Peter Eisentraut
2021-04-17 09:40:50 +02:00
parent f24b156997
commit f59b58e2a1
3 changed files with 5 additions and 5 deletions

View File

@ -2260,7 +2260,7 @@ static void
lazy_vacuum_heap_rel(LVRelState *vacrel)
{
int tupindex;
int vacuumed_pages;
BlockNumber vacuumed_pages;
PGRUsage ru0;
Buffer vmbuffer = InvalidBuffer;
LVSavedErrInfo saved_err_info;