PT-1554 Fixes for Ubuntu 14.04 tests

This commit is contained in:
Carlos Salguero
2018-05-31 10:57:00 -03:00
parent 0004bb7bbc
commit 97cdc1d14d
2 changed files with 3 additions and 3 deletions

View File

@@ -532,12 +532,12 @@ sub diff_rows {
$left_dbh->do("DROP TABLE IF EXISTS $left_tbl");
$left_dbh->do("CREATE TABLE $left_tbl $table_ddl");
$left_dbh->do("LOAD DATA LOCAL INFILE '$left_outfile' "
$left_dbh->do("LOAD DATA INFILE '$left_outfile' "
. "INTO TABLE $left_tbl");
$right_dbh->do("DROP TABLE IF EXISTS $right_tbl");
$right_dbh->do("CREATE TABLE $right_tbl $table_ddl");
$right_dbh->do("LOAD DATA LOCAL INFILE '$right_outfile' "
$right_dbh->do("LOAD DATA INFILE '$right_outfile' "
. "INTO TABLE $right_tbl");
PTDEBUG && _d('Loaded', $left_outfile, 'into table', $left_tbl, 'and',

View File

@@ -263,7 +263,7 @@ is(
if ($sandbox_version ge '8.0') {
diag(`/tmp/12345/use -u root -e "CREATE USER 'bob'\@'%' IDENTIFIED WITH mysql_native_password BY 'msandbox'"`);
} else {
diag(`/tmp/12345/use -u root -e "CREAE USER 'bob'\@'%' IDENTIFIED BY 'msandbox'"`);
diag(`/tmp/12345/use -u root -e "CREATE USER 'bob'\@'%' IDENTIFIED BY 'msandbox'"`);
}
diag(`/tmp/12345/use -u root -e "GRANT ALL ON *.* TO 'bob'\@'%'"`);
diag(`/tmp/12345/use -u root -e "REVOKE SUPER ON *.* FROM 'bob'\@'%'"`);