We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfd6ea3 commit 27074bcCopy full SHA for 27074bc
src/backend/commands/explain.c
@@ -1118,12 +1118,12 @@ ExplainPrintSerialize(ExplainState *es, SerializeMetrics *metrics)
1118
{
1119
ExplainIndentText(es);
1120
if (es->timing)
1121
- appendStringInfo(es->str, "Serialization: time=%.3f ms output=" INT64_FORMAT "kB format=%s\n",
+ appendStringInfo(es->str, "Serialization: time=%.3f ms output=" UINT64_FORMAT "kB format=%s\n",
1122
1000.0 * INSTR_TIME_GET_DOUBLE(metrics->timeSpent),
1123
(metrics->bytesSent + 512) / 1024,
1124
format);
1125
else
1126
- appendStringInfo(es->str, "Serialization: output=" INT64_FORMAT "kB format=%s\n",
+ appendStringInfo(es->str, "Serialization: output=" UINT64_FORMAT "kB format=%s\n",
1127
1128
1129
0 commit comments