Commit
ddb17e387aa28d61521227377b00f997756b8a27 introduced this
regression. Ideally, the regression tests would have caught this
mistake, but apparently they don't test with timing enabled,
presumably because that would make the output vary.
Author: Thom Brown <
[email protected]>
Reviewed-by: FabrÃzio de Royes Mello <[email protected]>
Discussion: http://postgr.es/m/CAA-aLv6nq=UeiyvM7_Mxgo9TVBzs2oh46b9vfyLzuyVEz3j1-g@mail.gmail.com
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);
appendStringInfo(es->str, "rows=%.2f loops=%.0f\n", rows, nloops);
}