1###############################################################################
2# Bug #1418438: innobackupex --compress only compress innodb tables
3###############################################################################
4
5start_server
6
7mysql -e "CREATE TABLE test (A INT PRIMARY KEY) ENGINE=MyISAM" test
8
9xtrabackup --compress --backup --tables=test.test --target-dir=$topdir/backup
10
11diff -u <(LANG=C ls $topdir/backup/test | sed 's/[0-9]/x/g') - <<EOF
12test.MYD.qp
13test.MYI.qp
14test_xxx.sdi.qp
15EOF
16