Commit 713b65e1 authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

Setting MyProc->xid to current transaction' id in StartTransaction

and to InvalidTransactionId in CommitTransaction & AbortTransaction
(it's for new TransactionIdIsInProgress func).
parent 1db76d70
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.5 1996/11/10 02:59:16 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.6 1996/11/27 07:14:51 vadim Exp $
* *
* NOTES * NOTES
* Transaction aborts can now occur two ways: * Transaction aborts can now occur two ways:
...@@ -754,6 +754,14 @@ StartTransaction() ...@@ -754,6 +754,14 @@ StartTransaction()
* ---------------- * ----------------
*/ */
s->state = TRANS_INPROGRESS; s->state = TRANS_INPROGRESS;
/*
* Let others to know about current transaction is in progress
* - vadim 11/26/96
*/
if ( MyProc != (PROC*) NULL )
MyProc->xid = s->transactionIdData;
} }
/* --------------- /* ---------------
...@@ -815,6 +823,13 @@ CommitTransaction() ...@@ -815,6 +823,13 @@ CommitTransaction()
if (IsNormalProcessingMode()) if (IsNormalProcessingMode())
Async_NotifyAtCommit(); Async_NotifyAtCommit();
} }
/*
* Let others to know about no transaction in progress
* - vadim 11/26/96
*/
if ( MyProc != (PROC*) NULL )
MyProc->xid = InvalidTransactionId;
} }
/* -------------------------------- /* --------------------------------
...@@ -827,6 +842,13 @@ AbortTransaction() ...@@ -827,6 +842,13 @@ AbortTransaction()
{ {
TransactionState s = CurrentTransactionState; TransactionState s = CurrentTransactionState;
/*
* Let others to know about no transaction in progress
* - vadim 11/26/96
*/
if ( MyProc != (PROC*) NULL )
MyProc->xid = InvalidTransactionId;
/* ---------------- /* ----------------
* check the current transaction state * check the current transaction state
* ---------------- * ----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment