mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Fix broken variable declaration
Author: Konstantin Knizhnik
This commit is contained in:
@ -476,7 +476,7 @@ DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
|
|||||||
{
|
{
|
||||||
XLogRecPtr origin_lsn = InvalidXLogRecPtr;
|
XLogRecPtr origin_lsn = InvalidXLogRecPtr;
|
||||||
TimestampTz commit_time = parsed->xact_time;
|
TimestampTz commit_time = parsed->xact_time;
|
||||||
XLogRecPtr origin_id = XLogRecGetOrigin(buf->record);
|
RepOriginId origin_id = XLogRecGetOrigin(buf->record);
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (parsed->xinfo & XACT_XINFO_HAS_ORIGIN)
|
if (parsed->xinfo & XACT_XINFO_HAS_ORIGIN)
|
||||||
|
Reference in New Issue
Block a user