Imported upstream version 1.5
[manpages-zh.git] / raw / man7 / drop_language.7
blobfdf7980e408cdd776cc691144642779e2efcd1fb
1 .\\" auto-generated by docbook2man-spec $Revision: 1.1 $
2 .TH "DROP LANGUAGE" "7" "2003-11-02" "SQL - Language Statements" "SQL Commands"
3 .SH NAME
4 DROP LANGUAGE \- remove a procedural language
6 .SH SYNOPSIS
7 .sp
8 .nf
9 DROP [ PROCEDURAL ] LANGUAGE \fIname\fR [ CASCADE | RESTRICT ]
10 .sp
11 .fi
12 .SH "DESCRIPTION"
13 .PP
14 \fBDROP LANGUAGE\fR will remove the definition
15 of the previously registered procedural language called
16 \fIname\fR.
17 .SH "PARAMETERS"
18 .TP
19 \fB\fIname\fB\fR
20 The name of an existing procedural language. For backward
21 compatibility, the name may be enclosed by single quotes.
22 .TP
23 \fBCASCADE\fR
24 Automatically drop objects that depend on the language (such as
25 functions in the language).
26 .TP
27 \fBRESTRICT\fR
28 Refuse to drop the language if any objects depend on it. This
29 is the default.
30 .SH "EXAMPLES"
31 .PP
32 This command removes the procedural language
33 plsample:
34 .sp
35 .nf
36 DROP LANGUAGE plsample;
37 .sp
38 .fi
39 .SH "COMPATIBILITY"
40 .PP
41 There is no \fBDROP LANGUAGE\fR statement in the SQL
42 standard.
43 .SH "SEE ALSO"
44 ALTER LANGUAGE [\fBalter_language\fR(7)], CREATE LANGUAGE [\fBcreate_language\fR(l)], \fBdroplang\fR(1)