We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4901a1 commit 08a6d36Copy full SHA for 08a6d36
src/backend/utils/sort/tuplesort.c
@@ -2692,8 +2692,9 @@ beginmerge(Tuplesortstate *state, bool finalMergeBatch)
2692
state->mergetuples[srcTape] + 1023) / 1024;
2693
usedSlots = slotsPerTape - state->mergeavailslots[srcTape];
2694
2695
- elog(LOG, "tape %d initially used %ld KB of %ld KB batch "
2696
- "(%2.3f) and %d out of %d slots (%2.3f)", srcTape,
+ elog(LOG, "tape %d initially used " INT64_FORMAT " KB of "
+ INT64_FORMAT " KB batch (%2.3f) and %d out of %d slots "
2697
+ "(%2.3f)", srcTape,
2698
usedSpaceKB, perTapeKB,
2699
(double) usedSpaceKB / (double) perTapeKB,
2700
usedSlots, slotsPerTape,
0 commit comments