Allow error query to start transaction in autocommit off mode.

This commit is contained in:
Bruce Momjian 2003-03-21 04:33:15 +00:00
parent 3bb7e1ef11
commit 9a9719e482

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.143 2003/03/14 22:40:31 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.144 2003/03/21 04:33:15 momjian Exp $
* *
* NOTES * NOTES
* Transaction aborts can now occur two ways: * Transaction aborts can now occur two ways:
@ -1341,7 +1341,10 @@ AbortCurrentTransaction(void)
*/ */
case TBLOCK_DEFAULT: case TBLOCK_DEFAULT:
AbortTransaction(); AbortTransaction();
if (autocommit || suppressChain)
CleanupTransaction(); CleanupTransaction();
else
s->blockState = TBLOCK_ABORT;
break; break;
/* /*