Skip to content

Commit

Permalink
MDEV-19060 : mariabackup continues, despite failing to open a tablespace
Browse files Browse the repository at this point in the history
Fix mariabackup to crash if opening tablespace fails, insitead of
continuing after an error.
  • Loading branch information
vaintroub committed Mar 27, 2019
1 parent a6585d5 commit 9a8b8ea
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions storage/xtradb/fil/fil0fil.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4827,12 +4827,6 @@ fil_load_single_table_tablespace(
srv_force_recovery);
return;
}

/* In mariabackup lets not crash. */
if (IS_XTRABACKUP()) {
return;
}

abort();
}

Expand Down

0 comments on commit 9a8b8ea

Please sign in to comment.