diff options
author | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2022-11-07 17:36:08 +0530 |
---|---|---|
committer | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2022-11-07 17:36:08 +0530 |
commit | f7e6198c0221112fdeb42668f89d29c828636156 (patch) | |
tree | 39f29505559c668f8427a24f60782192cc3be3ce /extra | |
parent | 92be8d20480ee0e2fb8ec72c005648f2573558ce (diff) | |
download | mariadb-git-f7e6198c0221112fdeb42668f89d29c828636156.tar.gz |
MDEV-27121 mariabackup incompatible with disabled dedicated undo log tablespaces
- mariabackup fails to assign srv_undo_space_id_start when the
dedicated undo tablespaces are disabled
Diffstat (limited to 'extra')
-rw-r--r-- | extra/mariabackup/xtrabackup.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/extra/mariabackup/xtrabackup.cc b/extra/mariabackup/xtrabackup.cc index 2b276856303..f7910fc9c23 100644 --- a/extra/mariabackup/xtrabackup.cc +++ b/extra/mariabackup/xtrabackup.cc @@ -3578,10 +3578,6 @@ static dberr_t xb_assign_undo_space_start() ulint space; int n_retries = 5; - if (srv_undo_tablespaces == 0) { - return error; - } - file = os_file_create(0, srv_sys_space.first_datafile()->filepath(), OS_FILE_OPEN, OS_FILE_NORMAL, OS_DATA_FILE, true, &ret); |