mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-04-17 01:01:39 +08:00
Fix a number of SQL queries to work with ANSI_QUOTES
This commit is contained in:
@@ -24,7 +24,7 @@ my $dbh = $sb->get_dbh_for('slave1');
|
||||
if ( !$dbh ) {
|
||||
plan skip_all => 'Cannot connect to MySQL slave.';
|
||||
}
|
||||
elsif ( !@{$dbh->selectcol_arrayref('SHOW DATABASES LIKE "sakila"')} ) {
|
||||
elsif ( !@{$dbh->selectcol_arrayref("SHOW DATABASES LIKE 'sakila'")} ) {
|
||||
plan skip_all => 'sakila db not loaded';
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user