summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2011-11-26 18:40:54 -0500
committerAndrew Dunstan <andrew@dunslane.net>2011-11-26 18:40:54 -0500
commit9f42e5b3ecd91e0f3da278bec5d8255c1e913e62 (patch)
tree26315ae6da603546024ce847a96a88b0fa8b5ab7 /src
parent403372459efe4c938d6777e9c10cadc2811c835a (diff)
downloadpostgresql-9f42e5b3ecd91e0f3da278bec5d8255c1e913e62.tar.gz
Use the right interpreter for encoding test.
Diffstat (limited to 'src')
-rw-r--r--src/pl/plperl/expected/plperl.out2
-rw-r--r--src/pl/plperl/sql/plperl.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plperl/expected/plperl.out b/src/pl/plperl/expected/plperl.out
index 6e2d5a6f7e..df54937f49 100644
--- a/src/pl/plperl/expected/plperl.out
+++ b/src/pl/plperl/expected/plperl.out
@@ -656,7 +656,7 @@ CONTEXT: PL/Perl anonymous code block
--
CREATE OR REPLACE FUNCTION perl_zerob() RETURNS TEXT AS $$
return "abcd\0efg";
-$$ LANGUAGE plperlu;
+$$ LANGUAGE plperl;
SELECT perl_zerob();
ERROR: invalid byte sequence for encoding "UTF8": 0x00
CONTEXT: PL/Perl function "perl_zerob"
diff --git a/src/pl/plperl/sql/plperl.sql b/src/pl/plperl/sql/plperl.sql
index ecb59cdb77..84af1fd73f 100644
--- a/src/pl/plperl/sql/plperl.sql
+++ b/src/pl/plperl/sql/plperl.sql
@@ -429,7 +429,7 @@ DO $do$ use warnings FATAL => qw(void) ; my @y; my $x = sort @y; 1; $do$ LANGUAG
--
CREATE OR REPLACE FUNCTION perl_zerob() RETURNS TEXT AS $$
return "abcd\0efg";
-$$ LANGUAGE plperlu;
+$$ LANGUAGE plperl;
SELECT perl_zerob();
-- make sure functions marked as VOID without an explicit return work