Remove a file that shouldn't have been committed.

This commit is contained in:
Daniel Nichter
2015-11-03 15:34:00 -08:00
parent 4eb1cd3a5c
commit 9796f7762b

View File

@@ -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;