1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Replace some appendStringInfo* calls with more appropriate variants

Author: David Rowley <dgrowleyml@gmail.com>
This commit is contained in:
Peter Eisentraut
2015-05-11 20:38:55 -04:00
parent b488c580ae
commit d02f16470f
6 changed files with 8 additions and 8 deletions

View File

@ -419,7 +419,7 @@ pg_decode_change(LogicalDecodingContext *ctx, ReorderBufferTXN *txn,
get_namespace_name(
get_rel_namespace(RelationGetRelid(relation))),
NameStr(class_form->relname)));
appendStringInfoString(ctx->out, ":");
appendStringInfoChar(ctx->out, ':');
switch (change->action)
{