summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/undo_space_id.result
blob: 96d3e2a58f4104513672524fdb76a3c79ab33def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Create 2 UNDO TABLESPACE(UNDO003, UNDO004)
CREATE TABLE t1(a varchar(60)) ENGINE INNODB;
start transaction;
INSERT INTO t1 VALUES(1);
# xtrabackup backup
# Display undo log files from target directory
undo003
undo004
# xtrabackup prepare
# Display undo log files from targer directory
undo003
undo004
DROP TABLE t1;