Thanks to visit codestin.com Credit goes to github.com
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 488f315 commit ef899c7Copy full SHA for ef899c7
src/backend/commands/remove.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.43 2000/01/10 17:14:32 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.44 2000/01/12 05:25:09 tgl Exp $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -320,7 +320,9 @@ RemoveFunction(char *functionName, /* function name to be removed */
320
char *typename;
321
int i;
322
323
-
+ if (nargs > FUNC_MAX_ARGS)
324
+ elog(ERROR, "functions cannot have more than %d arguments",
325
+ FUNC_MAX_ARGS);
326
MemSet(argList, 0, FUNC_MAX_ARGS * sizeof(Oid));
327
for (i = 0; i < nargs; i++)
328
{
0 commit comments