Activity log for bug #662714

Date Who What changed Old value New value Message
2010-10-18 14:57:33 Philip Stoev bug added bug
2010-10-18 14:58:06 Philip Stoev description The following test causes PBXT replication to fail: --source include/master-slave.inc --disable_abort_on_error --disable_warnings --disable_query_log --disable_result_log CREATE TABLE `table10_pbxt_int_autoinc` ( `col_int_key` int, pk integer auto_increment, `col_int` int, /*Indices*/ key (`col_int_key` ), primary key (pk)) EN$ INSERT /*! IGNORE */ INTO table10_pbxt_int_autoinc VALUES (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) ,$ SET AUTOCOMMIT=OFF; DELETE FROM `table10_pbxt_int_autoinc` WHERE 1 = 1 LIMIT 6; UPDATE `table10_pbxt_int_autoinc` SET `pk` = 2 WHERE `col_int_key` > 3 LIMIT 6; UPDATE `table10_pbxt_int_autoinc` SET `col_int_key` = 2 WHERE `pk` > 0 LIMIT 2; set autocommit=1; --connection master --sync_slave_with_master The error is Last_SQL_Error Could not execute Update_rows event on table test.table10_pbxt_int_autoinc; Can't find record in 'table10_pbxt_int_autoinc', Error_code: 1032; handler error HA_ERR_END_OF_FILE; the event's master log master-bin.000001, end_log_pos 1083 The following test causes PBXT replication to fail: --source include/master-slave.inc --disable_abort_on_error --disable_warnings --disable_query_log --disable_result_log CREATE TABLE `table10_pbxt_int_autoinc` ( `col_int_key` int, pk integer auto_increment, `col_int` int, /*Indices*/ key (`col_int_key` ), primary key (pk)) ENGINE=pbxt; INSERT /*! IGNORE */ INTO table10_pbxt_int_autoinc VALUES (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100) , (100, NULL, 100); SET AUTOCOMMIT=OFF; DELETE FROM `table10_pbxt_int_autoinc` WHERE 1 = 1 LIMIT 6; UPDATE `table10_pbxt_int_autoinc` SET `pk` = 2 WHERE `col_int_key` > 3 LIMIT 6; UPDATE `table10_pbxt_int_autoinc` SET `col_int_key` = 2 WHERE `pk` > 0 LIMIT 2; set autocommit=1; The error is Last_SQL_Error Could not execute Update_rows event on table test.table10_pbxt_int_autoinc; Can't find record in 'table10_pbxt_int_autoinc', Error_code: 1032; handler error HA_ERR_END_OF_FILE; the event's master log master-bin.000001, end_log_pos 1083
2010-10-18 14:58:28 Philip Stoev bug task added maria
2010-10-18 15:04:26 Philip Stoev maria: milestone 5.2
2010-10-18 15:22:50 Philip Stoev summary PBXT replication failure with autocommit=ON/OFF PBXT replication failure with simple transactions
2010-10-18 20:48:37 Kristian Nielsen maria: status New Confirmed
2010-10-19 07:25:22 Paul McCullagh pbxt: status New Confirmed