File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ SELECT foo1();
32
32
1
33
33
(1 row)
34
34
35
+ -- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
36
+ \c -
37
+ SET ROLE regress_user1;
35
38
-- Should be able to change privileges on the language
36
39
revoke all on language plperl from public;
37
40
SET ROLE regress_user2;
Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ CREATE EXTENSION plperlu; -- fail
31
31
CREATE FUNCTION foo1 () returns int language plperl as ' 1;' ;
32
32
SELECT foo1();
33
33
34
+ -- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
35
+ \c -
36
+
37
+ SET ROLE regress_user1;
38
+
34
39
-- Should be able to change privileges on the language
35
40
revoke all on language plperl from public;
36
41
You can’t perform that action at this time.
0 commit comments