Commit 951d7861 authored by Peter Eisentraut's avatar Peter Eisentraut

Put only single space after "Sort Method:", for consistency

parent d1001a78
...@@ -1469,7 +1469,7 @@ show_sort_info(SortState *sortstate, ExplainState *es) ...@@ -1469,7 +1469,7 @@ show_sort_info(SortState *sortstate, ExplainState *es)
if (es->format == EXPLAIN_FORMAT_TEXT) if (es->format == EXPLAIN_FORMAT_TEXT)
{ {
appendStringInfoSpaces(es->str, es->indent * 2); appendStringInfoSpaces(es->str, es->indent * 2);
appendStringInfo(es->str, "Sort Method: %s %s: %ldkB\n", appendStringInfo(es->str, "Sort Method: %s %s: %ldkB\n",
sortMethod, spaceType, spaceUsed); sortMethod, spaceType, spaceUsed);
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment