Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 26ce1b8

Browse files
knizhnikkelvich
authored andcommitted
Fix build bug
1 parent 1595b37 commit 26ce1b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pglogical_proto.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ pglogical_write_begin(StringInfo out, PGLogicalOutputData *data,
159159
MTM_LOG2("%d: pglogical_write_begin XID=%lld sent", MyProcPid, (long64)txn->xid);
160160
pq_sendbyte(out, 'B'); /* BEGIN */
161161
pq_sendint(out, MtmNodeId, 4);
162-
pq_sendint64(out, isRecovery ? InvalidTransactionId : txn->xid, 4);
162+
pq_sendint64(out, isRecovery ? InvalidTransactionId : txn->xid);
163163
pq_sendint64(out, csn);
164164
pq_sendint64(out, participantsMask);
165165

0 commit comments

Comments
 (0)