start transaction;
update a set b=1 where a=1;
update b set c=1 where a=1;
commit;
二进制日志会按顺序记录a、b的更新,但是b的更新什么时候会比a先刷新到log呢?
如何复发?
start transaction;
update a set b=1 where a=1;
update b set c=1 where a=1;
commit;
二进制日志会按顺序记录a、b的更新,但是b的更新什么时候会比a先刷新到log呢?
如何复发?