~lachlan-mulcahy/percona-xtrabackup/1.6-bug860133

« back to all changes in this revision

Viewing changes to test/t/bug810269.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:
46
46
 
47
47
vlog "Initial rows added"
48
48
 
49
 
checksum_a=`${MYSQL} ${MYSQL_ARGS} -Ns -e "checksum table test;" \
50
 
incremental_sample | awk '{print $2}'`
 
49
checksum_a=`checksum_table incremental_sample test`
51
50
 
52
51
vlog "Starting streaming backup"
53
52
 
71
70
 
72
71
run_mysqld
73
72
 
74
 
checksum_b=`${MYSQL} ${MYSQL_ARGS} -Ns -e "checksum table test;" \
75
 
incremental_sample | awk '{print $2}'`
 
73
checksum_b=`checksum_table incremental_sample test`
76
74
 
77
75
if [ "$checksum_a" != "$checksum_b" ]; then
78
76
    vlog "Checksums do not match"