summaryrefslogtreecommitdiff
path: root/src/man/drop_language.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/man/drop_language.l')
-rw-r--r--src/man/drop_language.l30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/man/drop_language.l b/src/man/drop_language.l
new file mode 100644
index 0000000000..8ed598fec5
--- /dev/null
+++ b/src/man/drop_language.l
@@ -0,0 +1,30 @@
+.\" This is -*-nroff-*-
+.\" XXX standard disclaimer belongs here....
+.\" $Header: /cvsroot/pgsql/src/man/Attic/drop_language.l,v 1.1 1997/10/30 05:38:20 vadim Exp $
+.TH "DROP LANGUAGE" SQL 11/05/95 PostgreSQL PostgreSQL
+.SH NAME
+drop language \(em remove a user-defined procedural language
+.SH SYNOPSIS
+.nf
+\fBdrop procedural language\fR 'lanname'
+.fi
+.SH DESCRIPTION
+.BR "drop procedural language"
+will remove the definition of the previously registered PL with the
+name
+.IR lanname .
+.SH EXAMPLE
+.nf
+--
+--this command removes the PL/Sample language
+--
+drop procedural language 'plsample';
+.fi
+.SH "SEE ALSO"
+create language(l).
+.SH BUGS
+No checks are made if functions or trigger procedures registered
+in this language still exist. To reenable them without having to
+drop and recreate all the functions, the pg_proc's prolang attribute
+of the functions must be adjusted to the new object ID of the
+recreated pg_language entry for the PL.