File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1118,12 +1118,12 @@ ExplainPrintSerialize(ExplainState *es, SerializeMetrics *metrics)
1118
1118
{
1119
1119
ExplainIndentText (es );
1120
1120
if (es -> timing )
1121
- appendStringInfo (es -> str , "Serialization: time=%.3f ms output=" INT64_FORMAT "kB format=%s\n" ,
1121
+ appendStringInfo (es -> str , "Serialization: time=%.3f ms output=" UINT64_FORMAT "kB format=%s\n" ,
1122
1122
1000.0 * INSTR_TIME_GET_DOUBLE (metrics -> timeSpent ),
1123
1123
(metrics -> bytesSent + 512 ) / 1024 ,
1124
1124
format );
1125
1125
else
1126
- appendStringInfo (es -> str , "Serialization: output=" INT64_FORMAT "kB format=%s\n" ,
1126
+ appendStringInfo (es -> str , "Serialization: output=" UINT64_FORMAT "kB format=%s\n" ,
1127
1127
(metrics -> bytesSent + 512 ) / 1024 ,
1128
1128
format );
1129
1129
You can’t perform that action at this time.
0 commit comments