remove check to fix the 'table does not exist' problem when lower_case_table_names=2 is set

This commit is contained in:
Taehyung Lim
2025-05-19 20:09:04 +09:00
parent d81adddfa4
commit 5989d2883c
12 changed files with 12 additions and 12 deletions

View File

@@ -362,7 +362,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;
}