Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 566c05c

Browse files
committed
Here is the patch to add plperl to droplang.
Mark Hollomon
1 parent 1a03ab9 commit 566c05c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/bin/scripts/droplang

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/droplang,v 1.6 2000/01/19 20:08:36 petere Exp $
11+
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/droplang,v 1.7 2000/02/09 20:23:26 momjian Exp $
1212
#
1313
#-------------------------------------------------------------------------
1414

@@ -159,9 +159,13 @@ case "$langname" in
159159
lancomp="PL/Tcl"
160160
handler="pltcl_call_handler"
161161
;;
162+
plperl)
163+
lancomp="PL/Perl"
164+
handler="plperl_call_handler"
165+
;;
162166
*)
163167
echo "$CMDNAME: unsupported language '$langname'"
164-
echo "Supported languages are 'plpgsql' and 'pltcl'."
168+
echo "Supported languages are 'plpgsql', 'pltcl', and 'plperl'."
165169
exit 1
166170
;;
167171
esac

0 commit comments

Comments
 (0)