1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-09-16 09:26:30 +02:00

tests: bloom index added to tests

This commit is contained in:
Grigory Smolkin
2018-10-18 16:37:34 +03:00
parent 535409291f
commit cf3c69e906
2 changed files with 6 additions and 0 deletions

View File

@@ -52,6 +52,11 @@ idx_ptrack = {
'type': 'hash',
'column': 'id',
'relation': 't_heap'
},
't_bloom': {
'type': 'bloom',
'column': 'id',
'relation': 't_heap'
}
}

View File

@@ -1341,6 +1341,7 @@ class PtrackTest(ProbackupTest, unittest.TestCase):
self.compare_pgdata(pgdata, pgdata_restored)
# START RESTORED NODE
node_restored.port = node.port
node_restored.slow_start()
# Clean after yourself