diff --git a/bin/pt-online-schema-change b/bin/pt-online-schema-change index 83bf65c6..65129002 100755 --- a/bin/pt-online-schema-change +++ b/bin/pt-online-schema-change @@ -9129,6 +9129,11 @@ sub find_child_tables { die "I need a $arg argument" unless $args{$arg}; } my ($tbl, $cxn, $q) = @args{@required_args}; + + if ( lc($tbl->{tbl_struct}->{engine} || '') eq 'myisam' ) { + PTDEBUG && _d(q{MyISAM table, not looking for child tables}); + return; + } PTDEBUG && _d('Finding child tables');