Skip to content

Commit

Permalink
remove check to fix the 'table does not exist' problem when lower_cas…
Browse files Browse the repository at this point in the history
…e_table_names=2 is set
  • Loading branch information
ehooi committed Dec 6, 2024
1 parent 58b9124 commit 777ae9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/pt-online-schema-change
Original file line number Diff line number Diff line change
Expand Up @@ -3521,7 +3521,7 @@ sub check_table {
$self->{check_table_error} = $e;
return 0;
}
if ( !$row->[0] || $row->[0] ne $tbl ) {
if ( !$row->[0] ) {
PTDEBUG && _d('Table does not exist');
return 0;
}
Expand Down

0 comments on commit 777ae9e

Please sign in to comment.