We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f210b commit fc8b890Copy full SHA for fc8b890
tests/cfs_restore.py
@@ -105,8 +105,7 @@ def test_restore_empty_tablespace_from_fullbackup(self):
105
tblspace = self.node.safe_psql(
106
"postgres",
107
"SELECT * FROM pg_tablespace WHERE spcname='{0}'".format(tblspace_name)
108
- )
109
- tblspace = str(tblspace)
+ ).decode("UTF-8")
110
self.assertTrue(
111
tblspace_name in tblspace and "compression=true" in tblspace,
112
"ERROR: The tablespace not restored or it restored without compressions"
0 commit comments