Skip to content

Commit 0667fd9

Browse files
committed
TransactionIdIsInProgress is commented out
1 parent 6450bef commit 0667fd9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/backend/access/transam/transam.c

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.7 1996/11/27 07:10:59 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.8 1996/11/27 15:15:54 vadim Exp $
1111
*
1212
* NOTES
1313
* This file contains the high level access-method interface to the
@@ -594,12 +594,14 @@ TransactionIdDidAbort(TransactionId transactionId)
594594
TransactionLogTest(transactionId, XID_ABORT);
595595
}
596596

597-
#ifdef 0
598597
/*
599598
* Now this func in shmem.c and gives quality answer by scanning
600599
* PROC structures of all running backend. - vadim 11/26/96
601-
*/
602-
bool /* true if given transaction neither committed nor aborted */
600+
*
601+
* Old comments:
602+
* true if given transaction neither committed nor aborted
603+
604+
bool
603605
TransactionIdIsInProgress(TransactionId transactionId)
604606
{
605607
if (AMI_OVERRIDE)
@@ -608,7 +610,7 @@ TransactionIdIsInProgress(TransactionId transactionId)
608610
return
609611
TransactionLogTest(transactionId, XID_INPROGRESS);
610612
}
611-
#endif
613+
*/
612614

613615
/* --------------------------------
614616
* TransactionId Commit

0 commit comments

Comments
 (0)