Revert "PT-2083 - Pt-archiver --charset option is not working for MySQL8.0"

This reverts commit 284a1f945e.
This commit is contained in:
Sveta Smirnova
2023-12-07 21:47:26 +03:00
parent 1682aa202c
commit 9b347dd466
4 changed files with 4 additions and 108 deletions

View File

@@ -1,18 +0,0 @@
DROP TABLE IF EXISTS test.table_1;
DROP TABLE IF EXISTS test.table_1_dest;
SET NAMES latin1;
CREATE TABLE test.table_1 (
id int(11) NOT NULL,
c1 varchar(20) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO test.table_1 VALUES(1, 'I love MySQL!');
CREATE TABLE test.table_1_dest (
id int(11) NOT NULL,
c1 varchar(20) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;