mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +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.
45 lines
1.4 KiB
Text
45 lines
1.4 KiB
Text
#--source include/innodb_page_size.inc
|
|
--source include/have_partition.inc
|
|
|
|
# import partitioned table from table from partial backup
|
|
|
|
CREATE TABLE t1(i INT) ENGINE INNODB
|
|
PARTITION BY RANGE (i)
|
|
(PARTITION p1 VALUES LESS THAN (100),
|
|
PARTITION p2 VALUES LESS THAN (200),
|
|
PARTITION p3 VALUES LESS THAN (300),
|
|
PARTITION p4 VALUES LESS THAN (400));
|
|
|
|
INSERT INTO t1 VALUES (1), (101), (201), (301);
|
|
|
|
echo # xtrabackup backup;
|
|
|
|
let $targetdir=$MYSQLTEST_VARDIR/tmp/backup;
|
|
--disable_result_log
|
|
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --backup --parallel=10 "--tables=test.t1" --target-dir=$targetdir;
|
|
--enable_result_log
|
|
INSERT INTO t1 VALUES (1), (101), (201), (301);
|
|
|
|
|
|
echo # xtrabackup prepare;
|
|
--disable_result_log
|
|
exec $XTRABACKUP --defaults-file=$MYSQLTEST_VARDIR/my.cnf --defaults-group-suffix=.1 --prepare --export --target-dir=$targetdir;
|
|
--enable_result_log
|
|
|
|
|
|
let $MYSQLD_DATADIR= `select @@datadir`;
|
|
CREATE TABLE t1_placeholder (i INT) ENGINE INNODB;
|
|
let $i=4;
|
|
while($i)
|
|
{
|
|
eval ALTER TABLE t1_placeholder DISCARD TABLESPACE;
|
|
copy_file $targetdir/test/t1#P#p$i.cfg $MYSQLD_DATADIR/test/t1_placeholder.cfg;
|
|
copy_file $targetdir/test/t1#P#p$i.ibd $MYSQLD_DATADIR/test/t1_placeholder.ibd;
|
|
eval ALTER TABLE t1_placeholder IMPORT TABLESPACE;
|
|
eval ALTER TABLE t1 EXCHANGE PARTITION p$i WITH TABLE t1_placeholder;
|
|
dec $i;
|
|
}
|
|
SELECT * FROM t1;
|
|
DROP TABLE t1;
|
|
DROP TABLE t1_placeholder;
|
|
rmdir $targetdir;
|