We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3964400 commitb703dedCopy full SHA for b703ded
src/backend/replication/logical/reorderbuffer.c
@@ -1719,8 +1719,6 @@ ReorderBufferPrepare(ReorderBuffer *rb, TransactionId xid,
1719
txn->prepared= true;
1720
strcpy(txn->gid,gid);
1721
1722
-fprintf(stderr,"ReorderBufferPrepare xid = %d, found = %d\n",xid,txn==NULL ?42 :txn->prepared);
1723
-
1724
ReorderBufferCommitInternal(txn,rb,xid,commit_lsn,end_lsn,
1725
commit_time,origin_id,origin_lsn);
1726
}
@@ -1737,8 +1735,6 @@ ReorderBufferTxnIsPrepared(ReorderBuffer *rb, TransactionId xid)
1737
1735
txn=ReorderBufferTXNByXid(rb,xid, false,NULL,InvalidXLogRecPtr,
1738
1736
false);
1739
1740
-fprintf(stderr,"ReorderBufferTxnIsPrepared xid = %d, found = %d\n",xid,txn==NULL ?42 :txn->prepared);
1741
1742
returntxn==NULL ? true :txn->prepared;
1743
1744