mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-06 12:20:15 +01:00
amcheck: Use correct format placeholder for TOAST chunk numbers
Several of these were already fixed in passing in
9acaf1a621, but one was remaining
inconsistent.
This commit is contained in:
parent
344487e2db
commit
59da8d9eb7
|
|
@ -1476,7 +1476,7 @@ check_toasted_attribute(HeapCheckContext *ctx, ToastedAttribute *ta)
|
||||||
ta->toast_pointer.va_valueid));
|
ta->toast_pointer.va_valueid));
|
||||||
else if (chunkno != (endchunk + 1))
|
else if (chunkno != (endchunk + 1))
|
||||||
report_toast_corruption(ctx, ta,
|
report_toast_corruption(ctx, ta,
|
||||||
psprintf("toast value %u was expected to end at chunk %u, but ended at chunk %u",
|
psprintf("toast value %u was expected to end at chunk %d, but ended at chunk %d",
|
||||||
ta->toast_pointer.va_valueid,
|
ta->toast_pointer.va_valueid,
|
||||||
(endchunk + 1), chunkno));
|
(endchunk + 1), chunkno));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user