@@ -1068,7 +1068,7 @@ def test_continue_failed_merge(self):
10681068 # Clean after yourself
10691069 self .del_test_dir (module_name , fname )
10701070
1071- # @unittest.skip("skip")
1071+ @unittest .skip ("skip" )
10721072 def test_continue_failed_merge_with_corrupted_delta_backup (self ):
10731073 """
10741074 Fail merge via gdb, corrupt DELTA backup, try to continue merge
@@ -1091,36 +1091,31 @@ def test_continue_failed_merge_with_corrupted_delta_backup(self):
10911091 "postgres" ,
10921092 "create table t_heap as select i as id,"
10931093 " md5(i::text) as text, md5(i::text)::tsvector as tsvector"
1094- " from generate_series(0,1000) i"
1095- )
1094+ " from generate_series(0,1000) i" )
10961095
10971096 old_path = node .safe_psql (
10981097 "postgres" ,
10991098 "select pg_relation_filepath('t_heap')" ).rstrip ()
11001099
11011100 # DELTA BACKUP
11021101 self .backup_node (
1103- backup_dir , 'node' , node , backup_type = 'delta'
1104- )
1102+ backup_dir , 'node' , node , backup_type = 'delta' )
11051103
11061104 node .safe_psql (
11071105 "postgres" ,
1108- "update t_heap set id = 100500"
1109- )
1106+ "update t_heap set id = 100500" )
11101107
11111108 node .safe_psql (
11121109 "postgres" ,
1113- "vacuum full t_heap"
1114- )
1110+ "vacuum full t_heap" )
11151111
11161112 new_path = node .safe_psql (
11171113 "postgres" ,
11181114 "select pg_relation_filepath('t_heap')" ).rstrip ()
11191115
11201116 # DELTA BACKUP
11211117 backup_id_2 = self .backup_node (
1122- backup_dir , 'node' , node , backup_type = 'delta'
1123- )
1118+ backup_dir , 'node' , node , backup_type = 'delta' )
11241119
11251120 backup_id = self .show_pb (backup_dir , "node" )[1 ]["id" ]
11261121
@@ -1155,7 +1150,7 @@ def test_continue_failed_merge_with_corrupted_delta_backup(self):
11551150
11561151 # Try to continue failed MERGE
11571152 try :
1158- self .merge_backup (backup_dir , "node" , backup_id )
1153+ print ( self .merge_backup (backup_dir , "node" , backup_id ) )
11591154 self .assertEqual (
11601155 1 , 0 ,
11611156 "Expecting Error because of incremental backup corruption.\n "
0 commit comments