mirror of
https://github.com/MariaDB/server.git
synced 2025-02-11 16:05:34 +01:00
![Alexander Barkov](/assets/img/avatar_default.png)
Renaming the default MariaDB backup directory from xtrabackup_backupfiles to mariadb_backup_files. Renaming files: - xtrabackup_binlog_info to mariadb_backup_binlog_info - xtrabackup_checkpoints to mariadb_backup_checkpoints - xtrabackup_galera_info to mariadb_backup_galera_info - xtrabackup_info to mariadb_backup_info - xtrabackup_slave_info to mariadb_backup_slave_info
21 lines
420 B
Text
21 lines
420 B
Text
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
|
|
#
|