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:
Yugo Nagata 2022-06-03 15:53:41 +09:00
parent 9719ed644d
commit a75443f8ea
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -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);