Can't backup individual partitions
Bug #1130627 reported by
Miguel Angel Nieto
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Percona XtraBackup moved to https://jira.percona.com/projects/PXB |
Fix Released
|
High
|
Alexey Kopytov | ||
2.0 |
Fix Released
|
High
|
Alexey Kopytov | ||
2.1 |
Fix Released
|
High
|
Alexey Kopytov |
Bug Description
Using the latest 2.0.5 version I can't partition individual tables. Check this example:
mysql> show create table test.t\G
*******
Table: t
Create Table: CREATE TABLE `t` (
`i` int(11) NOT NULL AUTO_INCREMENT,
`c` char(10) DEFAULT NULL,
PRIMARY KEY (`i`)
) ENGINE=InnoDB AUTO_INCREMENT=
/*!50100 PARTITION BY HASH (i)
PARTITIONS 10 */
root@squeeze:~# innobackupex --include=
[...]
[01] Skipping ./test/t#P#p5.ibd.
Seems that the bugfix 711166 introduced this regression.
Related branches
lp://staging/~akopytov/percona-xtrabackup/bug1130627-2.0
- Sergei Glushchenko (community): Approve (g2)
-
Diff: 351 lines (+183/-55)3 files modifiedinnobackupex (+38/-17)
src/xtrabackup.cc (+71/-38)
test/t/bug1130627.sh (+74/-0)
lp://staging/~akopytov/percona-xtrabackup/bug1130627-2.1
- Sergei Glushchenko (community): Approve (g2)
-
Diff: 320 lines (+174/-47)3 files modifiedinnobackupex (+30/-11)
src/xtrabackup.cc (+70/-36)
test/t/bug1130627.sh (+74/-0)
To post a comment you must log in.
A regression introduced in 2.0.5 by the fix for bug #711166,