mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-15405 Mixed replication fails with "Could not execute Delete_rows_v1 event" upon DELETE HISTORY
Allow slave thread to set time for system versioning Note that every binlog event stores now(0), while microseconds are only stored when they're actually used in the query. Meaning for unversioned->versioned replication, there will be no microseconds. Need to compensate for that.
This commit is contained in:
11
mysql-test/suite/versioning/r/rpl_mix.result
Normal file
11
mysql-test/suite/versioning/r/rpl_mix.result
Normal file
@@ -0,0 +1,11 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
CREATE TABLE t1 (pk INT PRIMARY KEY, i INT) WITH SYSTEM VERSIONING;
|
||||
INSERT INTO t1 VALUES (1,10),(2,20);
|
||||
UPDATE t1 SET i = 100;
|
||||
SET BINLOG_FORMAT= ROW;
|
||||
DELETE HISTORY FROM t1;
|
||||
connection slave;
|
||||
connection master;
|
||||
drop table t1;
|
||||
include/rpl_end.inc
|
Reference in New Issue
Block a user