File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1420,7 +1420,7 @@ check_tuple_attribute(HeapCheckContext *ctx)
1420
1420
/* Toasted attributes too large to be untoasted should never be stored */
1421
1421
if (toast_pointer .va_rawsize > VARLENA_SIZE_LIMIT )
1422
1422
report_corruption (ctx ,
1423
- psprintf ("toast value %u rawsize %u exceeds limit %u " ,
1423
+ psprintf ("toast value %u rawsize %d exceeds limit %d " ,
1424
1424
toast_pointer .va_valueid ,
1425
1425
toast_pointer .va_rawsize ,
1426
1426
VARLENA_SIZE_LIMIT ));
@@ -1433,7 +1433,7 @@ check_tuple_attribute(HeapCheckContext *ctx)
1433
1433
/* Compression should never expand the attribute */
1434
1434
if (VARATT_EXTERNAL_GET_EXTSIZE (toast_pointer ) > toast_pointer .va_rawsize - VARHDRSZ )
1435
1435
report_corruption (ctx ,
1436
- psprintf ("toast value %u external size %u exceeds maximum expected for rawsize %u " ,
1436
+ psprintf ("toast value %u external size %u exceeds maximum expected for rawsize %d " ,
1437
1437
toast_pointer .va_valueid ,
1438
1438
VARATT_EXTERNAL_GET_EXTSIZE (toast_pointer ),
1439
1439
toast_pointer .va_rawsize ));
You can’t perform that action at this time.
0 commit comments