mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Run a portal's cleanup hook immediately when pushing it to FAILED state.
This extends the changes of commit6252c4f9e2
so that we run the cleanup hook earlier for failure cases as well as success cases. As before, the point is to avoid an assertion failure from an Assert I added in commita874fe7b4c
, which was meant to check that no user-written code can be called during portal cleanup. This fixes a case reported by Pavan Deolasee in which the Assert could be triggered during backend exit (see the new regression test case), and also prevents the possibility that the cleanup hook is run after portions of the portal's state have already been recycled. That doesn't really matter in current usage, but it foreseeably could matter in the future. Back-patch to 9.1 where the Assert in question was added.
This commit is contained in:
@ -224,7 +224,7 @@ PerformPortalClose(const char *name)
|
||||
}
|
||||
|
||||
/*
|
||||
* Note: PortalCleanup is called as a side-effect
|
||||
* Note: PortalCleanup is called as a side-effect, if not already done.
|
||||
*/
|
||||
PortalDrop(portal, false);
|
||||
}
|
||||
@ -234,6 +234,10 @@ PerformPortalClose(const char *name)
|
||||
*
|
||||
* Clean up a portal when it's dropped. This is the standard cleanup hook
|
||||
* for portals.
|
||||
*
|
||||
* Note: if portal->status is PORTAL_FAILED, we are probably being called
|
||||
* during error abort, and must be careful to avoid doing anything that
|
||||
* is likely to fail again.
|
||||
*/
|
||||
void
|
||||
PortalCleanup(Portal portal)
|
||||
@ -420,7 +424,7 @@ PersistHoldablePortal(Portal portal)
|
||||
PG_CATCH();
|
||||
{
|
||||
/* Uncaught error while executing portal: mark it dead */
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/* Restore global vars and propagate error */
|
||||
ActivePortal = saveActivePortal;
|
||||
|
@ -608,7 +608,7 @@ PortalStart(Portal portal, ParamListInfo params, Snapshot snapshot)
|
||||
PG_CATCH();
|
||||
{
|
||||
/* Uncaught error while executing portal: mark it dead */
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/* Restore global vars and propagate error */
|
||||
ActivePortal = saveActivePortal;
|
||||
@ -830,7 +830,7 @@ PortalRun(Portal portal, long count, bool isTopLevel,
|
||||
PG_CATCH();
|
||||
{
|
||||
/* Uncaught error while executing portal: mark it dead */
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/* Restore global vars and propagate error */
|
||||
if (saveMemoryContext == saveTopTransactionContext)
|
||||
@ -1447,7 +1447,7 @@ PortalRunFetch(Portal portal,
|
||||
PG_CATCH();
|
||||
{
|
||||
/* Uncaught error while executing portal: mark it dead */
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/* Restore global vars and propagate error */
|
||||
ActivePortal = saveActivePortal;
|
||||
|
@ -404,6 +404,8 @@ UnpinPortal(Portal portal)
|
||||
/*
|
||||
* MarkPortalDone
|
||||
* Transition a portal from ACTIVE to DONE state.
|
||||
*
|
||||
* NOTE: never set portal->status = PORTAL_DONE directly; call this instead.
|
||||
*/
|
||||
void
|
||||
MarkPortalDone(Portal portal)
|
||||
@ -417,8 +419,36 @@ MarkPortalDone(Portal portal)
|
||||
* well do that now, since the portal can't be executed any more.
|
||||
*
|
||||
* In some cases involving execution of a ROLLBACK command in an already
|
||||
* aborted transaction, this prevents an assertion failure from reaching
|
||||
* AtCleanup_Portals with the cleanup hook still unexecuted.
|
||||
* aborted transaction, this prevents an assertion failure caused by
|
||||
* reaching AtCleanup_Portals with the cleanup hook still unexecuted.
|
||||
*/
|
||||
if (PointerIsValid(portal->cleanup))
|
||||
{
|
||||
(*portal->cleanup) (portal);
|
||||
portal->cleanup = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* MarkPortalFailed
|
||||
* Transition a portal into FAILED state.
|
||||
*
|
||||
* NOTE: never set portal->status = PORTAL_FAILED directly; call this instead.
|
||||
*/
|
||||
void
|
||||
MarkPortalFailed(Portal portal)
|
||||
{
|
||||
/* Perform the state transition */
|
||||
Assert(portal->status != PORTAL_DONE);
|
||||
portal->status = PORTAL_FAILED;
|
||||
|
||||
/*
|
||||
* Allow portalcmds.c to clean up the state it knows about. We might as
|
||||
* well do that now, since the portal can't be executed any more.
|
||||
*
|
||||
* In some cases involving cleanup of an already aborted transaction, this
|
||||
* prevents an assertion failure caused by reaching AtCleanup_Portals with
|
||||
* the cleanup hook still unexecuted.
|
||||
*/
|
||||
if (PointerIsValid(portal->cleanup))
|
||||
{
|
||||
@ -454,6 +484,9 @@ PortalDrop(Portal portal, bool isTopCommit)
|
||||
* hook's responsibility to not try to do that more than once, in the case
|
||||
* that failure occurs and then we come back to drop the portal again
|
||||
* during transaction abort.
|
||||
*
|
||||
* Note: in most paths of control, this will have been done already in
|
||||
* MarkPortalDone or MarkPortalFailed. We're just making sure.
|
||||
*/
|
||||
if (PointerIsValid(portal->cleanup))
|
||||
{
|
||||
@ -712,7 +745,7 @@ AtAbort_Portals(void)
|
||||
|
||||
/* Any portal that was actually running has to be considered broken */
|
||||
if (portal->status == PORTAL_ACTIVE)
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/*
|
||||
* Do nothing else to cursors held over from a previous transaction.
|
||||
@ -727,9 +760,12 @@ AtAbort_Portals(void)
|
||||
* AtSubAbort_Portals.
|
||||
*/
|
||||
if (portal->status == PORTAL_READY)
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/* let portalcmds.c clean up the state it knows about */
|
||||
/*
|
||||
* Allow portalcmds.c to clean up the state it knows about, if we
|
||||
* haven't already.
|
||||
*/
|
||||
if (PointerIsValid(portal->cleanup))
|
||||
{
|
||||
(*portal->cleanup) (portal);
|
||||
@ -861,9 +897,12 @@ AtSubAbort_Portals(SubTransactionId mySubid,
|
||||
*/
|
||||
if (portal->status == PORTAL_READY ||
|
||||
portal->status == PORTAL_ACTIVE)
|
||||
portal->status = PORTAL_FAILED;
|
||||
MarkPortalFailed(portal);
|
||||
|
||||
/* let portalcmds.c clean up the state it knows about */
|
||||
/*
|
||||
* Allow portalcmds.c to clean up the state it knows about, if we
|
||||
* haven't already.
|
||||
*/
|
||||
if (PointerIsValid(portal->cleanup))
|
||||
{
|
||||
(*portal->cleanup) (portal);
|
||||
|
Reference in New Issue
Block a user