mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
Fix util/checksum-test-dataset to work with MySQL 5.6: don't checksum log and stat tables.
This commit is contained in:
@@ -44,7 +44,8 @@ my $dbh = DBI->connect(
|
||||
# Sandbox::ok() will throw "ERROR: Tables are different on master: mysql.proc"
|
||||
$dbh->do("UPDATE mysql.proc SET created='2012-06-05 00:00:00', modified='2012-06-05 00:00:00'");
|
||||
|
||||
my @tables_in_mysql = grep { !/^innodb_(?:table|index)_stats$/ }
|
||||
my @tables_in_mysql = grep { !/^(?:innodb|slave)_/ }
|
||||
grep { !/_log$/ }
|
||||
@{$dbh->selectcol_arrayref('SHOW TABLES FROM mysql')};
|
||||
my @tables_in_sakila = qw( actor address category city country customer
|
||||
film film_actor film_category film_text inventory
|
||||
|
Reference in New Issue
Block a user