@@ -421,15 +421,10 @@ call p_verify_status_increment(2, 2, 2, 2);
421
421
422
422
-- echo # 4. Read-write statement: UPDATE, update 0 rows, 1 row matches WHERE
423
423
-- echo #
424
- -- echo # Note the wrong Handler_prepare/Handler_commit count is due to
425
- -- echo # Bug#29157 "UPDATE, changed rows incorrect" and
426
- -- echo # Bug#Bug #33846 UPDATE word:Wrong 'Changed rows' if InnoDB, unique
427
- -- echo # key and no rows qualify WHERE
428
- -- echo #
429
424
update t1 set a=2 ;
430
- call p_verify_status_increment(2 , 2 , 2 , 2 );
425
+ call p_verify_status_increment(2 , 2 , 1 , 0 );
431
426
commit;
432
- call p_verify_status_increment(2 , 2 , 2 , 2 );
427
+ call p_verify_status_increment(2 , 2 , 1 , 0 );
433
428
434
429
-- echo # 5. Read-write statement: UPDATE, update 0 rows, 0 rows match WHERE
435
430
-- echo #
@@ -483,9 +478,9 @@ call p_verify_status_increment(2, 2, 2, 2);
483
478
-- echo # 10. Read-write statement: REPLACE, change 0 rows.
484
479
-- echo #
485
480
replace t1 set a=1 ;
486
- call p_verify_status_increment(2 , 2 , 2 , 2 );
481
+ call p_verify_status_increment(2 , 2 , 1 , 0 );
487
482
commit;
488
- call p_verify_status_increment(2 , 2 , 2 , 2 );
483
+ call p_verify_status_increment(2 , 2 , 1 , 0 );
489
484
490
485
-- echo # 11. Read-write statement: IODKU, change 1 row.
491
486
-- echo #
0 commit comments