Skip to content
Snippets Groups Projects
Commit 566c05c3 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Here is the patch to add plperl to droplang.

Mark Hollomon
parent 1a03ab9c
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/droplang,v 1.6 2000/01/19 20:08:36 petere Exp $
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/droplang,v 1.7 2000/02/09 20:23:26 momjian Exp $
#
#-------------------------------------------------------------------------
......@@ -159,9 +159,13 @@ case "$langname" in
lancomp="PL/Tcl"
handler="pltcl_call_handler"
;;
plperl)
lancomp="PL/Perl"
handler="plperl_call_handler"
;;
*)
echo "$CMDNAME: unsupported language '$langname'"
echo "Supported languages are 'plpgsql' and 'pltcl'."
echo "Supported languages are 'plpgsql', 'pltcl', and 'plperl'."
exit 1
;;
esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment