DROP PROCEDURE
DROP PROCEDURE — remove a procedure
Synopsis
DROP PROCEDURE [ IF EXISTS ] name [ ( [ [ argmode ] [ argname ] argtype
[, ...] ] ) ] [, ...]
[ CASCADE | RESTRICT ]
Introduction
DROP PROCEDURE removes the definition of an existing procedure. To execute this command, the user must be the owner of the procedure. The argument types of the procedure must be specified, since there may be multiple different procedures with the same name and different argument lists.
Parameters
IF EXISTS
Do not throw an error if the procedure does not exist. A notice is issued in this case.
name
The name of an existing procedure (optionally schema-qualified). If no argument list is specified, the name must be unique in its schema.
argmode
The mode of an argument: IN or VARIADIC. If omitted, the default is IN.
argname
The name of an argument. Note that DROP PROCEDURE does not actually pay any attention to argument names, since only the argument data types are needed to determine the procedure's identity.
argtype
If the procedure has arguments, the data type(s) of the argument(s) (optionally schema-qualified).
CASCADE
Automatically drop objects that depend on the procedure, and in turn all objects that depend on those objects.
RESTRICT
Refuse to drop the procedure if any objects depend on it. This is the default.
Examples
DROP PROCEDURE do_db_maintenance();
See Also
CREATE PROCEDURE, ALTER PROCEDURE, DROP FUNCTION, DROP ROUTINE