mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-25 13:46:22 +00:00
PT-2340 - Support MySQL 8.4
- Updated modules and tests for pt-table-sync, pt-table-usage, pt-upgrade, pt-variable-advisor
This commit is contained in:
@@ -17,10 +17,10 @@ require "$trunk/bin/pt-table-sync";
|
||||
|
||||
my $dp = new DSNParser(opts=>$dsn_opts);
|
||||
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
||||
my $dbh = $sb->get_dbh_for('master');
|
||||
my $dbh = $sb->get_dbh_for('source');
|
||||
|
||||
if ( !$dbh ) {
|
||||
plan skip_all => 'Cannot connect to sandbox master';
|
||||
plan skip_all => 'Cannot connect to sandbox source';
|
||||
}
|
||||
else {
|
||||
plan tests => 3;
|
||||
@@ -32,7 +32,7 @@ my $output;
|
||||
# Issue 965: mk-table-sync --trim can cause impossible WHERE, invalid SQL
|
||||
# #############################################################################
|
||||
$sb->wipe_clean($dbh);
|
||||
$sb->load_file('master', 't/pt-table-sync/samples/issue_965.sql');
|
||||
$sb->load_file('source', 't/pt-table-sync/samples/issue_965.sql');
|
||||
|
||||
$output = output(
|
||||
sub {
|
||||
|
Reference in New Issue
Block a user