summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/mariabackup/compat_xtrabackup.result
blob: 484dc0d7d46f9f24456ac7b58670fa1d75e04160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
call mtr.add_suppression("InnoDB: New log files created");
#
# Start of 10.11 tests
#
#
# MDEV-18931 Rename Mariabackup's xtrabackup_* files to mariadb_backup_*
#
CREATE TABLE t1(i INT PRIMARY KEY) ENGINE MYISAM;
INSERT INTO t1 VALUES (1);
# Prepare full backup, apply incremental one
# shutdown server
# remove datadir
# xtrabackup move back
# restart
SELECT * FROM test.t1;
i
1
DROP TABLE t1;
#
# End of 10.11 tests
#