10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2190cf2 commit 9b5410aCopy full SHA for 9b5410a
src/backend/commands/command.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.76 2000/05/30 06:22:44 inoue Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.77 2000/06/04 22:04:32 tgl Exp $
12
13
* NOTES
14
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -234,6 +234,11 @@ PerformPortalClose(char *name, CommandDest dest)
234
return;
235
}
236
237
+ if (PortalNameIsSpecial(name))
238
+ elog(ERROR,
239
+ "The portal name \"%s\" is reserved for internal use",
240
+ name);
241
+
242
/* ----------------
243
* get the portal from the portal name
244
* ----------------
0 commit comments