1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

IB: skip sys_trx_start when comparing master and slave rows [closes #107]

This commit is contained in:
kevg
2016-12-26 18:46:02 +03:00
committed by Aleksey Midenkov
parent 4383e16cbe
commit abb2f9488d
5 changed files with 47 additions and 6 deletions

View File

@@ -109,5 +109,18 @@ connection slave;
select * from t1;
x
connection master;
create or replace table t1 (a int) with system versioning engine = innodb;
insert into t1 values (1);
update t1 set a=2;
select * from t1 for system_time all;
a
2
1
connection slave;
select * from t1 for system_time all;
a
2
1
connection master;
drop table t1;
include/rpl_end.inc