Skip to content

Commit d55838e

Browse files
committed
fix test restore.RestoreTest.test_missing_database_map for PGPROEE11 compatibility
1 parent 148afb2 commit d55838e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/restore.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3299,7 +3299,9 @@ def test_missing_database_map(self):
32993299
# because PUBLIC
33003300
node.safe_psql(
33013301
"backupdb",
3302-
"CREATE EXTENSION ptrack WITH SCHEMA pg_catalog")
3302+
"CREATE SCHEMA ptrack; "
3303+
"GRANT USAGE ON SCHEMA ptrack TO backup; "
3304+
"CREATE EXTENSION ptrack WITH SCHEMA ptrack")
33033305

33043306
if ProbackupTest.enterprise:
33053307
node.safe_psql(

0 commit comments

Comments
 (0)