~akopytov/percona-xtrabackup/bug722638-1.6

« back to all changes in this revision

Viewing changes to test/t/xb_part_range.sh

  • Committer: Alexey Kopytov
  • Date: 2011-09-16 07:02:15 UTC
  • mfrom: (280.1.3 bug722638-1.6)
  • Revision ID: akopytov@gmail.com-20110916070215-1dcbwia6plm7snsg
AutomergeĀ fromĀ 1.6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
vlog "Changes done"
60
60
 
61
61
# Saving the checksum of original table
62
 
checksum_a=`${MYSQL} ${MYSQL_ARGS} -Ns -e "checksum table test;" test | awk '{print $2}'`
 
62
checksum_a=`checksum_table test test`
63
63
 
64
64
vlog "Table checksum is $checksum_a - before backup"
65
65
 
102
102
run_mysqld
103
103
 
104
104
vlog "Cheking checksums"
105
 
checksum_b=`${MYSQL} ${MYSQL_ARGS} -Ns -e "checksum table test;" test | awk '{print $2}'`
 
105
checksum_b=`checksum_table test test`
106
106
 
107
107
if [ $checksum_a -ne $checksum_b  ]
108
108
then