Merge pull request #12 from sraoss/11-pg_ivm-test-fails-on-postgresql-15-beta1

Fix the test to grant create permissions on the public schema
This commit is contained in:
Yugo Nagata 2022-06-13 13:25:49 +09:00 committed by GitHub
commit 7ab42004d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);