mirror of
https://github.com/postgres/postgres.git
synced 2025-05-21 15:54:08 +03:00
Use appendStringInfoSpaces in more places
This adjusts a few places which were appending a string constant containing spaces onto a StringInfo. We have appendStringInfoSpaces for that job, so let's use that instead. For the change to jsonb.c's add_indent() function, appendStringInfoString was being called inside a loop to append 4 spaces on each loop. This meant that enlargeStringInfo would get called once per loop. Here it should be much more efficient to get rid of the loop and just calculate the number of spaces with "level * 4" and just append all the spaces in one go. Here we additionally adjust the appendStringInfoSpaces function so it makes use of memset rather than a while loop to apply the required spaces to the StringInfo. One of the problems with the while loop was that it was incrementing one variable and decrementing another variable once per loop. That's more work than what's required to get the job done. We may as well use memset for this rather than trying to optimize the existing loop. Some testing has shown memset is faster even for very small sizes. Discussion: https://postgr.es/m/CAApHDvp_rKkvwudBKgBHniNRg67bzXVjyvVKfX0G2zS967K43A@mail.gmail.com
This commit is contained in:
parent
1ca604c201
commit
9f1ca6ce65
@ -3324,7 +3324,7 @@ show_hashagg_info(AggState *aggstate, ExplainState *es)
|
|||||||
if (!gotone)
|
if (!gotone)
|
||||||
ExplainIndentText(es);
|
ExplainIndentText(es);
|
||||||
else
|
else
|
||||||
appendStringInfoString(es->str, " ");
|
appendStringInfoSpaces(es->str, 2);
|
||||||
|
|
||||||
appendStringInfo(es->str, "Batches: %d Memory Usage: " INT64_FORMAT "kB",
|
appendStringInfo(es->str, "Batches: %d Memory Usage: " INT64_FORMAT "kB",
|
||||||
aggstate->hash_batches_used, memPeakKb);
|
aggstate->hash_batches_used, memPeakKb);
|
||||||
|
@ -626,11 +626,8 @@ add_indent(StringInfo out, bool indent, int level)
|
|||||||
{
|
{
|
||||||
if (indent)
|
if (indent)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
|
|
||||||
appendStringInfoCharMacro(out, '\n');
|
appendStringInfoCharMacro(out, '\n');
|
||||||
for (i = 0; i < level; i++)
|
appendStringInfoSpaces(out, level * 4);
|
||||||
appendBinaryStringInfo(out, " ", 4);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,8 +211,8 @@ appendStringInfoSpaces(StringInfo str, int count)
|
|||||||
enlargeStringInfo(str, count);
|
enlargeStringInfo(str, count);
|
||||||
|
|
||||||
/* OK, append the spaces */
|
/* OK, append the spaces */
|
||||||
while (--count >= 0)
|
memset(&str->data[str->len], ' ', count);
|
||||||
str->data[str->len++] = ' ';
|
str->len += count;
|
||||||
str->data[str->len] = '\0';
|
str->data[str->len] = '\0';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user