mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
eca0172010
In the patch for BUG#21842, the code for handling old rows events were refactored. There were a bug in the refactored code (possibly introduced after the patch for BUG#21842) that caused caused the refactored old events to read a columns bitmap after image even though there is no such bitmap for old events. As a result, the reading got out of sync, and started reading invalid data. This patch removes all trace of the after image column bitmap from the refactored old events and removes functions that are no longer needed because they are empty.
15 lines
328 B
Text
15 lines
328 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 INT, b INT DEFAULT -3 );
|
|
INSERT INTO t1 VALUES (1, DEFAULT);
|
|
UPDATE t1 SET a = 3;
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a b
|
|
3 -3
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a b
|
|
3 -3
|