Merge pull request #327 from percona/PT-131-a

PT-131 Disable QRT plugin in pt-table-checksum
This commit is contained in:
Carlos Salguero
2018-05-18 14:27:59 -03:00
committed by GitHub
4 changed files with 142 additions and 2 deletions

View File

@@ -392,7 +392,7 @@ sub verify_test_data {
my @diffs;
foreach my $c ( @checksums ) {
next unless $c->{checksum};
if ( $c->{checksum} ne $ref->{$c->{table}}->{checksum} ) {
if ( $ref->{$c->{table}} && $c->{checksum} ne $ref->{$c->{table}}->{checksum} ) {
push @diffs, $c->{table};
}
}