mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
29fb5d17e0
Just adding testcase. This bug was fixed by patch for BUG#31583. mysql-test/suite/bugs/t/rpl_bug31583.test: Dropping tables to clean up after the test. mysql-test/suite/bugs/r/rpl_bug31582.result: New BitKeeper file ``mysql-test/suite/bugs/r/rpl_bug31582.result'' mysql-test/suite/bugs/t/rpl_bug31582.test: New BitKeeper file ``mysql-test/suite/bugs/t/rpl_bug31582.test''
16 lines
357 B
Text
16 lines
357 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
CREATE TABLE t1 (a VARCHAR(10) PRIMARY KEY) ENGINE=MyISAM;
|
|
INSERT INTO t1 VALUES ('a');
|
|
UPDATE t1 SET a = 'MyISAM';
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a
|
|
MyISAM
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a
|
|
MyISAM
|
|
DROP TABLE t1;
|