diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-03-27 14:37:14 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-03-27 14:38:21 +0100 |
commit | 9a8b8ea66b041719c2e95ed6beaf286628c935b4 (patch) | |
tree | 2e113085af57ad280a7c1462887f7d0c7f83340a /storage | |
parent | a6585d5ce99c2efdd75884b989250e2de8203cca (diff) | |
download | mariadb-git-9a8b8ea66b041719c2e95ed6beaf286628c935b4.tar.gz |
MDEV-19060 : mariabackup continues, despite failing to open a tablespace
Fix mariabackup to crash if opening tablespace fails, insitead of
continuing after an error.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/xtradb/fil/fil0fil.cc | 6 |
1 files changed, 0 insertions, 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(); } |