From: miker Date: Mon, 28 Jan 2008 20:04:14 +0000 (+0000) Subject: just use plperl and not plperlu X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e617d2b337f9ee7a97701d819981f9d49fd799c3;p=Evergreen.git just use plperl and not plperlu git-svn-id: svn://svn.open-ils.org/ILS/trunk@8515 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/020.schema.functions.sql b/Open-ILS/src/sql/Pg/020.schema.functions.sql index c2a85bd4f5..84528bd18e 100644 --- a/Open-ILS/src/sql/Pg/020.schema.functions.sql +++ b/Open-ILS/src/sql/Pg/020.schema.functions.sql @@ -53,7 +53,7 @@ CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $ $txt =~ s/\s+$//o; # Remove trailing space return $txt; -$func$ LANGUAGE 'plperlu' STRICT IMMUTABLE; +$func$ LANGUAGE 'plperl' STRICT IMMUTABLE; CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT ) RETURNS TEXT AS $func$ SELECT public.naco_normalize($1,'');