mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
29 lines
739 B
Text
29 lines
739 B
Text
CREATE TABLE t(i INT) ENGINE INNODB;
|
|
INSERT INTO t VALUES(1);
|
|
# xtrabackup backup
|
|
NOT FOUND /InnoDB: Allocated tablespace ID/ in backup.log
|
|
INSERT INTO t VALUES(2);
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart
|
|
SELECT * FROM t;
|
|
i
|
|
1
|
|
DROP TABLE t;
|
|
#
|
|
# MDEV-27121 mariabackup incompatible with disabled dedicated
|
|
# undo log tablespaces
|
|
#
|
|
call mtr.add_suppression("InnoDB: innodb_undo_tablespaces=0 disables dedicated undo log tablespaces");
|
|
# restart: --innodb_undo_tablespaces=0
|
|
# xtrabackup backup
|
|
# xtrabackup prepare
|
|
# shutdown server
|
|
# remove datadir
|
|
# xtrabackup move back
|
|
# restart: --innodb_undo_tablespaces=0
|
|
# Display undo log files from target directory
|
|
undo001
|
|
undo002
|