mirror of
https://github.com/postgres/postgres.git
synced 2025-05-09 18:21:05 +03:00
Fix incorrect format placeholders
This commit is contained in:
parent
8f1537d10e
commit
2e77180d45
@ -26,7 +26,7 @@ relmap_desc(StringInfo buf, XLogReaderState *record)
|
||||
{
|
||||
xl_relmap_update *xlrec = (xl_relmap_update *) rec;
|
||||
|
||||
appendStringInfo(buf, "database %u tablespace %u size %u",
|
||||
appendStringInfo(buf, "database %u tablespace %u size %d",
|
||||
xlrec->dbid, xlrec->tsid, xlrec->nbytes);
|
||||
}
|
||||
}
|
||||
|
@ -319,7 +319,7 @@ xact_desc_stats(StringInfo buf, const char *label,
|
||||
appendStringInfo(buf, "; %sdropped stats:", label);
|
||||
for (i = 0; i < ndropped; i++)
|
||||
{
|
||||
appendStringInfo(buf, " %u/%u/%u",
|
||||
appendStringInfo(buf, " %d/%u/%u",
|
||||
dropped_stats[i].kind,
|
||||
dropped_stats[i].dboid,
|
||||
dropped_stats[i].objoid);
|
||||
|
Loading…
x
Reference in New Issue
Block a user