We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a03ab9 commit 566c05cCopy full SHA for 566c05c
src/bin/scripts/droplang
@@ -8,7 +8,7 @@
8
#
9
10
# IDENTIFICATION
11
-# $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 $
12
13
#-------------------------------------------------------------------------
14
@@ -159,9 +159,13 @@ case "$langname" in
159
lancomp="PL/Tcl"
160
handler="pltcl_call_handler"
161
;;
162
+ plperl)
163
+ lancomp="PL/Perl"
164
+ handler="plperl_call_handler"
165
+ ;;
166
*)
167
echo "$CMDNAME: unsupported language '$langname'"
- echo "Supported languages are 'plpgsql' and 'pltcl'."
168
+ echo "Supported languages are 'plpgsql', 'pltcl', and 'plperl'."
169
exit 1
170
171
esac
0 commit comments