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();
3232 1
3333(1 row)
3434
35+ -- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
36+ \c -
37+ SET ROLE regress_user1;
3538-- Should be able to change privileges on the language
3639revoke all on language plperl from public;
3740SET ROLE regress_user2;
Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ CREATE EXTENSION plperlu; -- fail
3131CREATE FUNCTION foo1 () returns int language plperl as ' 1;' ;
3232SELECT foo1();
3333
34+ -- Must reconnect to avoid failure with non-MULTIPLICITY Perl interpreters
35+ \c -
36+
37+ SET ROLE regress_user1;
38+
3439-- Should be able to change privileges on the language
3540revoke all on language plperl from public;
3641
You can’t perform that action at this time.
0 commit comments