File tree 1 file changed +7
-1
lines changed
src/backend/access/transam
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.6 1996/11/10 02:59:11 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.7 1996/11/27 07:10:59 vadim Exp $
11
11
*
12
12
* NOTES
13
13
* This file contains the high level access-method interface to the
@@ -594,6 +594,11 @@ TransactionIdDidAbort(TransactionId transactionId)
594
594
TransactionLogTest (transactionId , XID_ABORT );
595
595
}
596
596
597
+ #ifdef 0
598
+ /*
599
+ * Now this func in shmem.c and gives quality answer by scanning
600
+ * PROC structures of all running backend. - vadim 11/26/96
601
+ */
597
602
bool /* true if given transaction neither committed nor aborted */
598
603
TransactionIdIsInProgress (TransactionId transactionId )
599
604
{
@@ -603,6 +608,7 @@ TransactionIdIsInProgress(TransactionId transactionId)
603
608
return
604
609
TransactionLogTest (transactionId , XID_INPROGRESS );
605
610
}
611
+ #endif
606
612
607
613
/* --------------------------------
608
614
* TransactionId Commit
You can’t perform that action at this time.
0 commit comments