We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f1e56 commit 2520cf8Copy full SHA for 2520cf8
src/pl/plperl/expected/plperl_setup.out
@@ -32,6 +32,9 @@ SELECT foo1();
32
1
33
(1 row)
34
35
+-- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
36
+\c -
37
+SET ROLE regress_user1;
38
-- Should be able to change privileges on the language
39
revoke all on language plperl from public;
40
SET ROLE regress_user2;
src/pl/plperl/sql/plperl_setup.sql
@@ -31,6 +31,11 @@ CREATE EXTENSION plperlu; -- fail
31
CREATE FUNCTION foo1() returns int language plperl as '1;';
SELECT foo1();
+
41
0 commit comments