From 9a8b8ea66b041719c2e95ed6beaf286628c935b4 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Wed, 27 Mar 2019 14:37:14 +0100 Subject: [PATCH] MDEV-19060 : mariabackup continues, despite failing to open a tablespace Fix mariabackup to crash if opening tablespace fails, insitead of continuing after an error. --- storage/xtradb/fil/fil0fil.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/storage/xtradb/fil/fil0fil.cc b/storage/xtradb/fil/fil0fil.cc index d6d2a6f887c..01ebd98929f 100644 --- a/storage/xtradb/fil/fil0fil.cc +++ b/storage/xtradb/fil/fil0fil.cc @@ -4827,12 +4827,6 @@ will_not_choose: srv_force_recovery); return; } - - /* In mariabackup lets not crash. */ - if (IS_XTRABACKUP()) { - return; - } - abort(); }