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:
Sveta Smirnova
2024-08-03 17:03:48 +03:00
parent 56599f01ad
commit a38bee6d60
69 changed files with 1442 additions and 1304 deletions

View File

@@ -7,15 +7,15 @@ CREATE TABLE `t` (
PRIMARY KEY (`id`)
);
INSERT INTO issue_616.t VALUES
(1, 'from master'),
(11, 'from master'),
(21, 'from master'),
(1, 'from source'),
(11, 'from source'),
(21, 'from source'),
(22, 'from slave'),
(32, 'from slave'),
(42, 'from slave'),
(31, 'from master'),
(41, 'from master'),
(51, 'from master');
(31, 'from source'),
(41, 'from source'),
(51, 'from source');
SET SQL_LOG_BIN=0;
DELETE FROM issue_616.t WHERE id IN (22,32,42);
SET SQL_LOG_BIN=1;