Commit 2520cf8c authored by Tom Lane's avatar Tom Lane

Fix test failure with non-MULTIPLICITY Perl interpreters.

Per buildfarm.
parent e6f1e560
......@@ -32,6 +32,9 @@ SELECT foo1();
1
(1 row)
-- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
\c -
SET ROLE regress_user1;
-- Should be able to change privileges on the language
revoke all on language plperl from public;
SET ROLE regress_user2;
......
......@@ -31,6 +31,11 @@ CREATE EXTENSION plperlu; -- fail
CREATE FUNCTION foo1() returns int language plperl as '1;';
SELECT foo1();
-- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
\c -
SET ROLE regress_user1;
-- Should be able to change privileges on the language
revoke all on language plperl from public;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment