diff --git a/t/pt-table-checksum/filters.t b/t/pt-table-checksum/filters.t index de32b730..a80a2c57 100644 --- a/t/pt-table-checksum/filters.t +++ b/t/pt-table-checksum/filters.t @@ -25,7 +25,7 @@ if ( !$dbh ) { plan skip_all => 'Cannot connect to sandbox master'; } else { - plan tests => 7; + plan tests => 8; } # The sandbox servers run with lock_wait_timeout=3 and it's not dynamic @@ -107,6 +107,25 @@ test_filter( ['sakila.film_text'], ); +test_filter( + [qw(--databases sakila --ignore-tables), + 'sakila.actor,sakila.address,category,city,payment' + ], + [qw( + sakila.country + sakila.customer + sakila.film + sakila.film_actor + sakila.film_category + sakila.film_text + sakila.inventory + sakila.language + sakila.rental + sakila.staff + sakila.store + )], +); + # ############################################################################# # Done. # #############################################################################