7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.7 1996/11/2707:10:59 vadim Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.8 1996/11/2715:15:54 vadim Exp $
11
11
*
12
12
* NOTES
13
13
* This file contains the high level access-method interface to the
@@ -594,12 +594,14 @@ TransactionIdDidAbort(TransactionId transactionId)
594
594
TransactionLogTest (transactionId ,XID_ABORT );
595
595
}
596
596
597
- #ifdef 0
598
597
/*
599
598
* Now this func in shmem.c and gives quality answer by scanning
600
599
* 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
603
605
TransactionIdIsInProgress(TransactionId transactionId)
604
606
{
605
607
if (AMI_OVERRIDE)
@@ -608,7 +610,7 @@ TransactionIdIsInProgress(TransactionId transactionId)
608
610
return
609
611
TransactionLogTest(transactionId, XID_INPROGRESS);
610
612
}
611
- #endif
613
+ */
612
614
613
615
/* --------------------------------
614
616
*TransactionId Commit