File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 48
48
1
49
49
include/stop_slave.inc
50
50
SET sql_log_bin=0;
51
+ ALTER TABLE mysql.gtid_slave_pos ENGINE=MyISAM;
51
52
CREATE TABLE mysql.gtid_slave_pos_innodb LIKE mysql.gtid_slave_pos;
52
53
ALTER TABLE mysql.gtid_slave_pos_innodb ENGINE=InnoDB;
53
54
INSERT INTO mysql.gtid_slave_pos_innodb SELECT * FROM mysql.gtid_slave_pos;
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ SELECT * FROM t1 ORDER BY a;
40
40
SELECT * FROM t1 ORDER BY a;
41
41
--source include/stop_slave.inc
42
42
SET sql_log_bin=0;
43
+ # Reset storage engine for mysql.gtid_slave_pos in case an earlier test
44
+ # might have changed it to InnoDB.
45
+ ALTER TABLE mysql.gtid_slave_pos ENGINE=MyISAM;
43
46
CREATE TABLE mysql.gtid_slave_pos_innodb LIKE mysql.gtid_slave_pos;
44
47
ALTER TABLE mysql.gtid_slave_pos_innodb ENGINE=InnoDB;
45
48
INSERT INTO mysql.gtid_slave_pos_innodb SELECT * FROM mysql.gtid_slave_pos;
You can’t perform that action at this time.
0 commit comments