Commit c9fb9be3 authored by Andrei Elkin's avatar Andrei Elkin

merging from the repository to my local tree

parents d083ceab 97d0c8d9
...@@ -671,8 +671,11 @@ call p_verify_status_increment(2, 2, 2, 2); ...@@ -671,8 +671,11 @@ call p_verify_status_increment(2, 2, 2, 2);
savepoint a; savepoint a;
call p_verify_status_increment(0, 0, 0, 0); call p_verify_status_increment(0, 0, 0, 0);
insert t1 set a=4; insert t1 set a=4;
--echo # Sic: a bug. Binlog did not register itself this time. --echo # Binlog does not register itself this time for other than the 1st
call p_verify_status_increment(1, 0, 1, 0); --echo # statement of the transaction with MIXED/STATEMENT binlog_format.
--echo # It needs registering with the ROW format. Therefore 1,0,2,2 are
--echo # the correct arguments to this test after bug#40221 fixed.
call p_verify_status_increment(1, 0, 2, 2);
release savepoint a; release savepoint a;
rollback; rollback;
call p_verify_status_increment(0, 0, 0, 0); call p_verify_status_increment(0, 0, 0, 0);
......
...@@ -770,8 +770,11 @@ call p_verify_status_increment(0, 0, 0, 0); ...@@ -770,8 +770,11 @@ call p_verify_status_increment(0, 0, 0, 0);
SUCCESS SUCCESS
insert t1 set a=4; insert t1 set a=4;
# Sic: a bug. Binlog did not register itself this time. # Binlog does not register itself this time for other than the 1st
call p_verify_status_increment(1, 0, 1, 0); # statement of the transaction with MIXED/STATEMENT binlog_format.
# It needs registering with the ROW format. Therefore 1,0,2,2 are
# the correct arguments to this test after bug#40221 fixed.
call p_verify_status_increment(1, 0, 2, 2);
SUCCESS SUCCESS
release savepoint a; release savepoint a;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment