Hi, Commit ddb17e387aa introduced fractional row counts, but the rejigging has introduced a formatting issue:
Worker 0: actual time=34.779..34.780rows=0 loops=1 Buffers: shared hit=1200 Worker 1: actual time=39.737..39.738rows=0 loops=1 Buffers: shared hit=1084 A space is missing between the time values and the "rows" label. Patch attached to fix. Regards Thom
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index c0d614866a..a1395edc8c 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -2075,7 +2075,7 @@ ExplainNode(PlanState *planstate, List *ancestors, ExplainIndentText(es); appendStringInfo(es->str, "actual "); if (es->timing) - appendStringInfo(es->str, "time=%.3f..%.3f", startup_ms, total_ms); + appendStringInfo(es->str, "time=%.3f..%.3f ", startup_ms, total_ms); if (nloops > 1) appendStringInfo(es->str, "rows=%.2f loops=%.0f\n", rows, nloops);