diff --git a/bin/pt-duplicate-key-checker b/bin/pt-duplicate-key-checker index a058c6b9..4fd76e09 100755 --- a/bin/pt-duplicate-key-checker +++ b/bin/pt-duplicate-key-checker @@ -3240,10 +3240,10 @@ sub _d { # ########################################################################### # SchemaIterator package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/SchemaIterator.pm # t/lib/SchemaIterator.t -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### { package SchemaIterator; @@ -3648,7 +3648,7 @@ sub engine_is_allowed { my $filter = $self->{filters}; if ( $filter->{'ignore-engines'}->{$engine} ) { - PTDEBUG && _d('Engine', $engine, 'is in --ignore-databases list'); + PTDEBUG && _d('Engine', $engine, 'is in --ignore-engines list'); return 0; } diff --git a/bin/pt-index-usage b/bin/pt-index-usage index f7ecc2c4..9321dfde 100755 --- a/bin/pt-index-usage +++ b/bin/pt-index-usage @@ -4022,10 +4022,10 @@ sub _d { # ########################################################################### # SchemaIterator package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/SchemaIterator.pm # t/lib/SchemaIterator.t -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### { package SchemaIterator; @@ -4430,7 +4430,7 @@ sub engine_is_allowed { my $filter = $self->{filters}; if ( $filter->{'ignore-engines'}->{$engine} ) { - PTDEBUG && _d('Engine', $engine, 'is in --ignore-databases list'); + PTDEBUG && _d('Engine', $engine, 'is in --ignore-engines list'); return 0; } diff --git a/bin/pt-table-checksum b/bin/pt-table-checksum index e25d436c..5ecb8118 100755 --- a/bin/pt-table-checksum +++ b/bin/pt-table-checksum @@ -7567,10 +7567,10 @@ sub _d { # ########################################################################### # SchemaIterator package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/SchemaIterator.pm # t/lib/SchemaIterator.t -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### { package SchemaIterator; @@ -7975,7 +7975,7 @@ sub engine_is_allowed { my $filter = $self->{filters}; if ( $filter->{'ignore-engines'}->{$engine} ) { - PTDEBUG && _d('Engine', $engine, 'is in --ignore-databases list'); + PTDEBUG && _d('Engine', $engine, 'is in --ignore-engines list'); return 0; } diff --git a/bin/pt-table-sync b/bin/pt-table-sync index 245bdbce..25171082 100755 --- a/bin/pt-table-sync +++ b/bin/pt-table-sync @@ -7666,10 +7666,10 @@ sub _d { # ########################################################################### # SchemaIterator package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/SchemaIterator.pm # t/lib/SchemaIterator.t -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### { package SchemaIterator; @@ -8074,7 +8074,7 @@ sub engine_is_allowed { my $filter = $self->{filters}; if ( $filter->{'ignore-engines'}->{$engine} ) { - PTDEBUG && _d('Engine', $engine, 'is in --ignore-databases list'); + PTDEBUG && _d('Engine', $engine, 'is in --ignore-engines list'); return 0; } diff --git a/lib/SchemaIterator.pm b/lib/SchemaIterator.pm index 4c51ae40..53f21db8 100644 --- a/lib/SchemaIterator.pm +++ b/lib/SchemaIterator.pm @@ -462,10 +462,10 @@ sub table_is_allowed { |slave_master_info |slave_relay_log_info |slave_worker_info - |slow_log + |slow_log )$/x; - if ( $filter->{'ignore-tables'}->{'*'}->{$tbl} + if ( $filter->{'ignore-tables'}->{'*'}->{$tbl} || $filter->{'ignore-tables'}->{$db}->{$tbl}) { PTDEBUG && _d('Table', $tbl, 'is in --ignore-tables list'); return 0; @@ -478,7 +478,7 @@ sub table_is_allowed { } if ( $filter->{'tables'} - && (!$filter->{'tables'}->{'*'}->{$tbl} && !$filter->{'tables'}->{$db}->{$tbl}) ) { + && (!$filter->{'tables'}->{'*'}->{$tbl} && !$filter->{'tables'}->{$db}->{$tbl}) ) { PTDEBUG && _d('Table', $tbl, 'is not in --tables list, ignoring'); return 0; } @@ -527,7 +527,7 @@ sub engine_is_allowed { my $filter = $self->{filters}; if ( $filter->{'ignore-engines'}->{$engine} ) { - PTDEBUG && _d('Engine', $engine, 'is in --ignore-databases list'); + PTDEBUG && _d('Engine', $engine, 'is in --ignore-engines list'); return 0; }