mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-16 00:03:02 +00:00
PT-2340 - Support MySQL 8.4
- Removed offensive terminology from library files and their tests - Removed unused sandbox/prove2junit.pl - Added option mysql_ssl to DSN and possibility to have DSN of multiple letters
This commit is contained in:
@@ -33,8 +33,8 @@ use PerconaTest;
|
||||
|
||||
my $dp = new DSNParser(opts=>$dsn_opts);
|
||||
my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp);
|
||||
my $dbh1 = $sb->get_dbh_for('master');
|
||||
my $dbh2 = $sb->get_dbh_for('slave1');
|
||||
my $dbh1 = $sb->get_dbh_for('source');
|
||||
my $dbh2 = $sb->get_dbh_for('replica1');
|
||||
|
||||
if ( !$dbh1 ) {
|
||||
plan skip_all => "Cannot connect to sandbox master";
|
||||
@@ -99,7 +99,7 @@ sub get_id {
|
||||
# Test the checksum method.
|
||||
# #############################################################################
|
||||
|
||||
$sb->load_file('master', "t/lib/samples/compare-results.sql");
|
||||
$sb->load_file('source', "t/lib/samples/compare-results.sql");
|
||||
|
||||
$cr = new CompareResults(
|
||||
method => 'checksum',
|
||||
@@ -308,7 +308,7 @@ my $tmpdir = '/tmp/mk-upgrade-res';
|
||||
|
||||
diag(`rm -rf $tmpdir 2>/dev/null; mkdir $tmpdir`);
|
||||
|
||||
$sb->load_file('master', "t/lib/samples/compare-results.sql");
|
||||
$sb->load_file('source', "t/lib/samples/compare-results.sql");
|
||||
|
||||
$cr = new CompareResults(
|
||||
method => 'rows',
|
||||
|
Reference in New Issue
Block a user