mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-10-19 17:04:00 +00:00
PT-1860 make pt-osc respect case insesitive lookup on Windows and osx #516
- Run update-modules - Adjusted fix, so it does not create extra variable to hold $EVAL_ERROR - Adjusted test case, so it runs on Linux
This commit is contained in:
@@ -339,9 +339,9 @@ sub check_table {
|
||||
|
||||
my $lower_case_table_names;
|
||||
eval { ($lower_case_table_names) = $dbh->selectrow_array($lctn_sql); };
|
||||
if ( my $e = $EVAL_ERROR ) {
|
||||
PTDEBUG && _d($e);
|
||||
$self->{check_table_error} = $e;
|
||||
if ( $EVAL_ERROR ) {
|
||||
PTDEBUG && _d($EVAL_ERROR);
|
||||
$self->{check_table_error} = $EVAL_ERROR;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user