mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
1c55b845e0
Added support to BACKUP STAGE to maria-backup This is a port of the code from ES 10.6 See MDEV-5336 for backup stages description. The following old options are not supported by the new code: --rsync ; This is because rsync will not work on tables that are in used. --no-backup-locks ; This is disabled as mariadb-backup will always use backup locks for better performance.
33 lines
948 B
Text
33 lines
948 B
Text
#--source include/innodb_page_size.inc
|
|
--source include/have_file_key_management.inc
|
|
|
|
CREATE TABLE t(c TEXT) ENGINE INNODB encrypted=yes;
|
|
INSERT INTO t VALUES(REPEAT('fubar',100));
|
|
INSERT INTO t VALUES('foobar1');
|
|
DELETE FROM t LIMIT 1;
|
|
echo # xtrabackup backup;
|
|
let $targetdir=$MYSQLTEST_VARDIR/tmp/backup;
|
|
--disable_result_log
|
|
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --parallel=10 --target-dir=$targetdir;
|
|
--enable_result_log
|
|
|
|
--let SEARCH_RANGE = 10000000
|
|
--let SEARCH_PATTERN=foobar1
|
|
--let SEARCH_FILE=$targetdir/ib_logfile0
|
|
--source include/search_pattern_in_file.inc
|
|
--echo # expect NOT FOUND
|
|
|
|
INSERT INTO t VALUES('foobar2');
|
|
echo # xtrabackup prepare;
|
|
|
|
--disable_result_log
|
|
exec $XTRABACKUP --prepare --target-dir=$targetdir;
|
|
-- source include/restart_and_restore.inc
|
|
--enable_result_log
|
|
|
|
--list_files $targetdir ib_logfile*
|
|
--remove_file $targetdir/ib_logfile0
|
|
|
|
SELECT * FROM t;
|
|
DROP TABLE t;
|
|
rmdir $targetdir;
|