Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # | ||
| # MDEV-18589 Assertion ...physical_size(flags) == info.page_size | ||
| # failed in xb_delta_open_matching_space | ||
| # | ||
| CREATE TABLE t (pk INT PRIMARY KEY) ENGINE=InnoDB ROW_FORMAT=COMPRESSED; | ||
| ALTER TABLE t PARTITION BY KEY(pk); | ||
| # shutdown server | ||
| # remove datadir | ||
| # xtrabackup move back | ||
| # restart | ||
| SHOW CREATE TABLE t; | ||
| Table Create Table | ||
| t CREATE TABLE `t` ( | ||
| `pk` int(11) NOT NULL, | ||
| PRIMARY KEY (`pk`) | ||
| ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPRESSED | ||
| PARTITION BY KEY (`pk`) | ||
| DROP TABLE t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| --source include/have_innodb.inc | ||
| --source include/have_partition.inc | ||
|
|
||
| let $basedir=$MYSQLTEST_VARDIR/tmp/backup; | ||
| let $incremental_dir=$MYSQLTEST_VARDIR/tmp/backup_inc1; | ||
|
|
||
| --echo # | ||
| --echo # MDEV-18589 Assertion ...physical_size(flags) == info.page_size | ||
| --echo # failed in xb_delta_open_matching_space | ||
| --echo # | ||
|
|
||
| CREATE TABLE t (pk INT PRIMARY KEY) ENGINE=InnoDB ROW_FORMAT=COMPRESSED; | ||
|
|
||
| --exec $XTRABACKUP --backup --target-dir=$basedir --protocol=tcp --port=$MASTER_MYPORT --user=root | ||
|
|
||
| ALTER TABLE t PARTITION BY KEY(pk); | ||
|
|
||
| --exec $XTRABACKUP --backup --target-dir=$incremental_dir --incremental-basedir=$basedir --protocol=tcp --port=$MASTER_MYPORT --user=root > $incremental_dir.log 2>&1 | ||
| --exec $XTRABACKUP --prepare --target-dir=$basedir --user=root > $MYSQL_TMP_DIR/backup_prepare_0.log 2>&1 | ||
| --exec $XTRABACKUP --prepare --target-dir=$basedir --incremental-dir=$incremental_dir --user=root > $MYSQL_TMP_DIR/backup_prepare_1.log | ||
| --cat_file $MYSQL_TMP_DIR/backup_prepare_1.log | ||
| let $targetdir=$basedir; | ||
| -- source include/restart_and_restore.inc | ||
|
|
||
| SHOW CREATE TABLE t; | ||
| DROP TABLE t; |