Skip to content
Snippets Groups Projects
Commit 1cfd2012 authored by Tom Lane's avatar Tom Lane
Browse files

Remove erroneous Assert, per example from Kris Jurka.

parent 257cccbe
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/mmgr/portalmem.c,v 1.72 2004/09/16 16:58:36 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/mmgr/portalmem.c,v 1.73 2004/09/16 21:08:12 tgl Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -679,10 +679,6 @@ AtSubCleanup_Portals(SubTransactionId mySubid)
if (portal->createSubid != mySubid)
continue;
/* AtSubAbort_Portals should have fixed these: */
Assert(portal->status != PORTAL_ACTIVE);
Assert(portal->resowner == NULL);
/* Zap it. */
PortalDrop(portal, false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment