diff options
author | Peter Eisentraut | 2015-05-12 00:38:55 +0000 |
---|---|---|
committer | Peter Eisentraut | 2015-05-12 00:38:55 +0000 |
commit | d02f16470f117db3038dbfd87662d5f0eb5a2a9b (patch) | |
tree | 13057bb662f4b7ffeeae077a224dc61fdd5ea7a3 /contrib/test_decoding/test_decoding.c | |
parent | b488c580aef4e05f39be5daaab6464da5b22a494 (diff) |
Replace some appendStringInfo* calls with more appropriate variants
Author: David Rowley <[email protected]>
Diffstat (limited to 'contrib/test_decoding/test_decoding.c')
-rw-r--r-- | contrib/test_decoding/test_decoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_decoding/test_decoding.c b/contrib/test_decoding/test_decoding.c index bca03ee21b4..ae2aca8a8db 100644 --- a/contrib/test_decoding/test_decoding.c +++ b/contrib/test_decoding/test_decoding.c @@ -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) { |