Remove erroneous Assert, per example from Kris Jurka.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 16 Sep 2004 21:08:12 +0000 (21:08 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 16 Sep 2004 21:08:12 +0000 (21:08 +0000)
src/backend/utils/mmgr/portalmem.c

index dddd416187b496165cbb1bd443959442fe23ed75..d787597713010aafccb1292d2abe1c498555d1dd 100644 (file)
@@ -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);
    }