mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-09 03:37:36 +00:00
Remove a file that shouldn't have been committed.
This commit is contained in:
21
bin/foo.pm
21
bin/foo.pm
@@ -1,21 +0,0 @@
|
||||
package pt_online_schema_change_plugin;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
sub new {
|
||||
my ( $class, %args ) = @_;
|
||||
my $self = {};
|
||||
return bless $self, $class;
|
||||
}
|
||||
|
||||
sub before_swap_tables {
|
||||
my ($self, %args) = @_;
|
||||
print `mysql -e "select * From mysql.innodb_index_stats where database_name='test'"`;
|
||||
print `mysql -e "select * From mysql.innodb_table_stats where database_name='test'"`;
|
||||
sleep 12;
|
||||
print `mysql -e "select * From mysql.innodb_index_stats where database_name='test'"`;
|
||||
print `mysql -e "select * From mysql.innodb_table_stats where database_name='test'"`;
|
||||
}
|
||||
|
||||
1;
|
Reference in New Issue
Block a user