mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-27 16:12:04 +00:00
Revert "PT-2083 - Pt-archiver --charset option is not working for MySQL8.0"
This reverts commit 284a1f945e
.
This commit is contained in:
@@ -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;
|
Reference in New Issue
Block a user