mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
logical decoding: fix decoding of a commit's commit time.
When adding replication origins in5aa235042
, I somehow managed to set the timestamp of decoded transactions to InvalidXLogRecptr when decoding one made without a replication origin. Fix that, and the wrong type of the new commit_time variable. This didn't trigger a regression test failure because we explicitly don't show commit timestamps in the regression tests, as they obviously are variable. Add a test that checks that a decoded commit's timestamp is within minutes of NOW() from before the commit. Reported-By: Weiping Qu Diagnosed-By: Artur Zakirov Discussion: 56D4197E.9050706@informatik.uni-kl.de, 56D42918.1010108@postgrespro.ru Backpatch: 9.5, where5aa235042
originates.
This commit is contained in:
@ -449,7 +449,7 @@ DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
|
||||
xl_xact_parsed_commit *parsed, TransactionId xid)
|
||||
{
|
||||
XLogRecPtr origin_lsn = InvalidXLogRecPtr;
|
||||
XLogRecPtr commit_time = InvalidXLogRecPtr;
|
||||
TimestampTz commit_time = parsed->xact_time;
|
||||
XLogRecPtr origin_id = XLogRecGetOrigin(buf->record);
|
||||
int i;
|
||||
|
||||
|
Reference in New Issue
Block a user