PT-572 Fixes for MySQL 8

- Updated sandbox data file
- Fixes for pt-upgrade since there is no query_cache in MySQL 8
- Updates for SchemaIterator since there are new/renamed tables in MySQL 8
- Disabled some tests due to errors in MySQL 8.0.4-rc
This commit is contained in:
Carlos Salguero
2018-02-01 11:30:12 -03:00
parent d38a584271
commit 51dcca5959
17 changed files with 225 additions and 46 deletions
+3 -2
View File
@@ -29,8 +29,9 @@ if ( !$master_dbh ) {
}
elsif ( !$slave_dbh ) {
plan skip_all => 'Cannot connect to sandbox slave';
}
else {
} elsif ($sandbox_version ge '8.0') {
plan skip_all => "Skipped due to an error in MySQL 8.0.4-rc";
} else {
plan tests => 3;
}