mirror of
https://github.com/postgres/postgres.git
synced 2025-10-21 02:52:47 +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:
@@ -6187,7 +6187,7 @@ flatten_set_variable_args(const char *name, List *args)
|
||||
A_Const *con;
|
||||
|
||||
if (l != list_head(args))
|
||||
appendStringInfo(&buf, ", ");
|
||||
appendStringInfoString(&buf, ", ");
|
||||
|
||||
if (IsA(arg, TypeCast))
|
||||
{
|
||||
|
Reference in New Issue
Block a user