mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-01 19:45:33 +08:00
Fix test failure with non-MULTIPLICITY Perl interpreters.
Per buildfarm.
This commit is contained in:
parent
e6f1e560e4
commit
2520cf8c2a
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user