4 DROP LANGUAGE — remove a procedural language
8 DROP [ PROCEDURAL ] LANGUAGE [ IF EXISTS ] name [ CASCADE | RESTRICT ]
12 DROP LANGUAGE removes the definition of a previously registered
13 procedural language. You must be a superuser or the owner of the
14 language to use DROP LANGUAGE.
18 As of PostgreSQL 9.1, most procedural languages have been made into
19 “extensions”, and should therefore be removed with DROP EXTENSION not
25 Do not throw an error if the language does not exist. A notice
26 is issued in this case.
29 The name of an existing procedural language.
32 Automatically drop objects that depend on the language (such as
33 functions in the language), and in turn all objects that depend
34 on those objects (see Section 5.15).
37 Refuse to drop the language if any objects depend on it. This is
42 This command removes the procedural language plsample:
43 DROP LANGUAGE plsample;
47 There is no DROP LANGUAGE statement in the SQL standard.
51 ALTER LANGUAGE, CREATE LANGUAGE