mirror of
https://github.com/postgres/postgres.git
synced 2025-05-01 01:04:50 +03:00
Old patch from Mark Hollomon to add plperl to createlang's repertoire.
Seems to have slipped through the cracks.
This commit is contained in:
parent
cfc0ba8c04
commit
e4739e7029
@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.7 2000/03/14 23:06:41 thomas Exp $
|
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.8 2000/03/25 19:10:27 tgl Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -184,9 +184,13 @@ case "$langname" in
|
|||||||
lancomp="PL/Tcl"
|
lancomp="PL/Tcl"
|
||||||
trusted="TRUSTED "
|
trusted="TRUSTED "
|
||||||
handler="pltcl_call_handler";;
|
handler="pltcl_call_handler";;
|
||||||
|
plperl)
|
||||||
|
lancomp="PL/Perl"
|
||||||
|
trusted="TRUSTED "
|
||||||
|
handler="plperl_call_handler";;
|
||||||
*)
|
*)
|
||||||
echo "$CMDNAME: unsupported language '$langname'"
|
echo "$CMDNAME: unsupported language '$langname'"
|
||||||
echo "Supported languages are 'plpgsql' and 'pltcl'."
|
echo "Supported languages are 'plpgsql', 'pltcl', and 'plperl'."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user