mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
MDEV-13561 Mariabackup is incompatible with retroactively created innodb_undo_tablespaces
- Mariabackup supports starting undo tablespace id which is greater than 1.
This commit is contained in:
parent
4629db0dd6
commit
b6d68c6aa3
6 changed files with 130 additions and 5 deletions
25
mysql-test/suite/mariabackup/undo_space_id.test
Normal file
25
mysql-test/suite/mariabackup/undo_space_id.test
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
--source include/have_innodb.inc
|
||||
--source include/have_debug.inc
|
||||
|
||||
--echo # Create 2 UNDO TABLESPACE(UNDO003, UNDO004)
|
||||
|
||||
let $basedir=$MYSQLTEST_VARDIR/tmp/backup;
|
||||
|
||||
CREATE TABLE t1(a varchar(60)) ENGINE INNODB;
|
||||
start transaction;
|
||||
INSERT INTO t1 VALUES(1);
|
||||
|
||||
--echo # xtrabackup backup
|
||||
--disable_result_log
|
||||
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --target-dir=$basedir;
|
||||
--enable_result_log
|
||||
--echo # Display undo log files from target directory
|
||||
list_files $basedir undo*;
|
||||
|
||||
--echo # xtrabackup prepare
|
||||
exec $XTRABACKUP --prepare --apply-log-only --target-dir=$basedir;
|
||||
--echo # Display undo log files from targer directory
|
||||
list_files $basedir undo*;
|
||||
|
||||
DROP TABLE t1;
|
||||
rmdir $basedir;
|
||||
Loading…
Add table
Add a link
Reference in a new issue