| 769 | } |
| 770 | |
| 771 | static void |
| 772 | pg_output_stream_start(LogicalDecodingContext *ctx, TestDecodingData *data, ReorderBufferTXN *txn, bool last_write) |
| 773 | { |
| 774 | OutputPluginPrepareWrite(ctx, last_write); |
| 775 | if (data->include_xids) |
| 776 | appendStringInfo(ctx->out, "opening a streamed block for transaction TXN %u", txn->xid); |
| 777 | else |
| 778 | appendStringInfoString(ctx->out, "opening a streamed block for transaction"); |
| 779 | OutputPluginWrite(ctx, last_write); |
| 780 | } |
| 781 | |
| 782 | static void |
| 783 | pg_decode_stream_stop(LogicalDecodingContext *ctx, |
no test coverage detected