Commit f2e1730e authored by Amit Kapila's avatar Amit Kapila

Fix origin timestamp during decoding of ROLLBACK PREPARED operation.

This happens because we were passing incorrect arguments to
ReorderBufferFinishPrepared().

Author: Masahiko Sawada
Reviewed-by: Vignesh C
Backpatch-through: 14
Discussion: https://postgr.es/m/CAD21AoBqhUqgDZUhUVnnwKRubPDNJ6m6fJDPgok3E5cWJLL+pA@mail.gmail.com
parent 64ab21f0
...@@ -876,8 +876,8 @@ DecodeAbort(LogicalDecodingContext *ctx, XLogRecordBuffer *buf, ...@@ -876,8 +876,8 @@ DecodeAbort(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
if (two_phase && !skip_xact) if (two_phase && !skip_xact)
{ {
ReorderBufferFinishPrepared(ctx->reorder, xid, buf->origptr, buf->endptr, ReorderBufferFinishPrepared(ctx->reorder, xid, buf->origptr, buf->endptr,
abort_time, origin_id, origin_lsn,
InvalidXLogRecPtr, InvalidXLogRecPtr,
abort_time, origin_id, origin_lsn,
parsed->twophase_gid, false); parsed->twophase_gid, false);
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment