~percona-toolkit-dev/percona-toolkit/pt-stalk-handles-mysql-user-password-in-awkward-way-1348679

« back to all changes in this revision

Viewing changes to util/checksum-test-dataset

Merge Kenny's pt-slave-restart-gtid-support branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        . join(", ", map { "sakila.$_" } @tables_in_sakila);
62
62
my @checksums = @{$dbh->selectall_arrayref($sql, {Slice => {} })};
63
63
foreach my $c ( @checksums ) {
 
64
   next unless $c->{Checksum};
64
65
   $dbh->do("INSERT INTO percona_test.checksums(db_tbl, checksum)
65
66
   VALUES('$c->{Table}', $c->{Checksum})");
66
67
}