1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Use INT64_FORMAT instead of %ld for int64.

Commit 0011c0091e886b874e485a46ff2c94222ffbf550 introduced this
mistake.

Patch by me.  Reported by Andres Freund, who also reviewed the
patch.
This commit is contained in:
Robert Haas 2016-03-18 14:53:06 -04:00
parent c4901a1e03
commit 08a6d36dcb

View File

@ -2692,8 +2692,9 @@ beginmerge(Tuplesortstate *state, bool finalMergeBatch)
state->mergetuples[srcTape] + 1023) / 1024; state->mergetuples[srcTape] + 1023) / 1024;
usedSlots = slotsPerTape - state->mergeavailslots[srcTape]; usedSlots = slotsPerTape - state->mergeavailslots[srcTape];
elog(LOG, "tape %d initially used %ld KB of %ld KB batch " elog(LOG, "tape %d initially used " INT64_FORMAT " KB of "
"(%2.3f) and %d out of %d slots (%2.3f)", srcTape, INT64_FORMAT " KB batch (%2.3f) and %d out of %d slots "
"(%2.3f)", srcTape,
usedSpaceKB, perTapeKB, usedSpaceKB, perTapeKB,
(double) usedSpaceKB / (double) perTapeKB, (double) usedSpaceKB / (double) perTapeKB,
usedSlots, slotsPerTape, usedSlots, slotsPerTape,