Details
Description
If statement rollback wipes out all changes of the transaction, it can still happen that in commit processing an empty write set will be replicated.
A simple test to verify:
create table t (I int primary key); |
insert into t values (1); |
begin;
|
insert into t values (2),(1); |
commit;
|
Attachments
Issue Links
- relates to
-
MDEV-30217 Assertion `mode_ == m_local || transaction_.is_streaming()' failed in int wsrep::client_state::bf_abort(wsrep::seqno)
- Closed