mirror of
https://github.com/postgres/postgres.git
synced 2025-11-09 06:21:09 +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:
@@ -36,5 +36,5 @@ tblspc_desc(StringInfo buf, uint8 xl_info, char *rec)
|
||||
appendStringInfo(buf, "drop tablespace: %u", xlrec->ts_id);
|
||||
}
|
||||
else
|
||||
appendStringInfo(buf, "UNKNOWN");
|
||||
appendStringInfoString(buf, "UNKNOWN");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user