diff options
Diffstat (limited to 'src/bin/scripts/createlang.sh')
-rw-r--r-- | src/bin/scripts/createlang.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bin/scripts/createlang.sh b/src/bin/scripts/createlang.sh index 83bf8b31114..7c4b959367a 100644 --- a/src/bin/scripts/createlang.sh +++ b/src/bin/scripts/createlang.sh @@ -7,7 +7,7 @@ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.27 2001/05/24 00:13:13 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.28 2001/06/18 21:40:06 momjian Exp $ # #------------------------------------------------------------------------- @@ -210,6 +210,12 @@ case "$langname" in handler="plperl_call_handler" object="plperl" ;; + plperlu) + lancomp="PL/Perl (untrusted)" + trusted="" + handler="plperl_call_handler" + object="plperl" + ;; plpython) lancomp="PL/Python" trusted="TRUSTED " |