Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit51d3e27

Browse files
committed
Fix missing space in EXPLAIN ANALYZE output.
Commitddb17e3 introduced thisregression. Ideally, the regression tests would have caught thismistake, 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
1 parent424eded commit51d3e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/commands/explain.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2038,7 +2038,7 @@ ExplainNode(PlanState *planstate, List *ancestors,
20382038
ExplainIndentText(es);
20392039
appendStringInfo(es->str,"actual ");
20402040
if (es->timing)
2041-
appendStringInfo(es->str,"time=%.3f..%.3f",startup_ms,total_ms);
2041+
appendStringInfo(es->str,"time=%.3f..%.3f",startup_ms,total_ms);
20422042

20432043
appendStringInfo(es->str,"rows=%.2f loops=%.0f\n",rows,nloops);
20442044
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp