PT-2340 - Support MySQL 8.4

- Added deprecation warning to pt-slave-delay
- Re-enabled tests for pt-slave-delay to check the warning
- Disabled pt-slave-delay for MySQL 8.1+
This commit is contained in:
Sveta Smirnova
2024-08-26 16:49:42 +03:00
parent 194bb99ef9
commit 1006101bb4
7 changed files with 317 additions and 39 deletions

View File

@@ -88,7 +88,7 @@ our $source_status = 'binary log';
our $source_reset = 'binary logs and gtids';
our $source_change = 'replication source';
our $replica_name = 'replica';
if ( $sandbox_version < '8.1' || ( $ENV{FORK} || "" eq 'mariadb' ) ) {
if ( $sandbox_version lt '8.1' || ( $ENV{FORK} || "" eq 'mariadb' ) ) {
$source_name = 'master';
$source_status = 'master';
$source_reset = 'master';