~hrvojem/percona-xtrabackup/bug839306-2.0

« back to all changes in this revision

Viewing changes to test/t/ib_part_include.sh

  • Committer: Alexey Kopytov
  • Date: 2013-04-28 05:28:35 UTC
  • mfrom: (533.1.2 2.0)
  • Revision ID: akopytov@gmail.com-20130428052835-aadtc5yxcbadcmbj
Manual merge of lp:~akopytov/percona-xtrabackup/support-remote-tablespaces-2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
# also test xtrabackup --stats work with --tables-file
29
29
COUNT=`xtrabackup --stats --tables='test.test$' --datadir=$topdir/backup \
30
 
       | grep table: | awk '{print $2}' | sort -u | wc -l`
 
30
       | grep table: | grep -v SYS_ | awk '{print $2}' | sort -u | wc -l`
31
31
 
32
 
if [ $COUNT != 7 ] ; then
 
32
if [ $COUNT != 5 ] ; then
33
33
        vlog "xtrabackup --stats does not work"
34
34
        exit -1
35
35
fi