mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Use appendStringInfoString instead of appendStringInfo where possible.
This shaves a few cycles, and generally seems like good programming practice. David Rowley
This commit is contained in:
@ -1340,7 +1340,7 @@ build_tuplestore_recursively(char *key_fld,
|
||||
for (i = 0; i < proc; i++)
|
||||
{
|
||||
/* initialize branch for this pass */
|
||||
appendStringInfo(&branchstr, "%s", branch);
|
||||
appendStringInfoString(&branchstr, branch);
|
||||
appendStringInfo(&chk_branchstr, "%s%s%s", branch_delim, branch, branch_delim);
|
||||
|
||||
/* get the next sql result tuple */
|
||||
|
Reference in New Issue
Block a user