We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9110b33 commit a5e9445Copy full SHA for a5e9445
src/backend/commands/vacuum.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.140 2000/02/21 07:49:40 inoue Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.141 2000/02/24 04:34:38 inoue Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -107,6 +107,9 @@ void CommonSpecialPortalOpen(void)
107
{
108
char *pname;
109
110
+
111
+ if (CommonSpecialPortalInUse)
112
+ elog(ERROR, "CommonSpecialPortal is in use");
113
/*
114
* Create a portal for safe memory across transactions. We need to
115
* palloc the name space for it because our hash function expects the
0 commit comments