Fix the test to grant create permissions on the public schema
As of PG15, PUBLIC CREATE was revoked from public schema, so we have to grant it in contrib_regression database.
This commit is contained in:
parent
9719ed644d
commit
a75443f8ea
2 changed files with 2 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
CREATE EXTENSION pg_ivm;
|
||||
GRANT ALL ON SCHEMA public TO public;
|
||||
-- create a table to use as a basis for views and materialized views in various combinations
|
||||
CREATE TABLE mv_base_a (i int, j int);
|
||||
INSERT INTO mv_base_a VALUES
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
CREATE EXTENSION pg_ivm;
|
||||
GRANT ALL ON SCHEMA public TO public;
|
||||
|
||||
-- create a table to use as a basis for views and materialized views in various combinations
|
||||
CREATE TABLE mv_base_a (i int, j int);
|
||||
|
|
|
|||
Loading…
Reference in a new issue