mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
f136bde28e
Just adding testcase. This bug was fixed by patch for BUG#31583.
25 lines
730 B
Text
25 lines
730 B
Text
|
|
# BUG#31582: 5.1-telco-6.1 -> 5.1.22. Slave crashes when reading
|
|
# UPDATE for VARCHAR
|
|
|
|
# This is a problem for any update statement replicating from an old
|
|
# server to a new server. The bug consisted of a new slave trying to
|
|
# read two column bitmaps, but there is only one available in the old
|
|
# format.
|
|
|
|
# This test case should be executed replicating from an old server to
|
|
# a new server, so make sure you have one handy.
|
|
|
|
source include/master-slave.inc;
|
|
|
|
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;
|
|
sync_slave_with_master;
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
connection master;
|
|
DROP TABLE t1;
|
|
sync_slave_with_master;
|
|
|