mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Fix missing space in EXPLAIN ANALYZE output.
Commit ddb17e387a 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 <thom@linux.com>
Reviewed-by: Fabrízio de Royes Mello <fabriziomello@gmail.com>
Discussion: http://postgr.es/m/CAA-aLv6nq=UeiyvM7_Mxgo9TVBzs2oh46b9vfyLzuyVEz3j1-g@mail.gmail.com
This commit is contained in:
parent
424ededc58
commit
51d3e279c3
1 changed files with 1 additions and 1 deletions
|
|
@ -2038,7 +2038,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);
|
||||
|
||||
appendStringInfo(es->str, "rows=%.2f loops=%.0f\n", rows, nloops);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue