1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

main.alter_table_online_debug: fix race in XA tests

This commit is contained in:
Nikita Malyavin
2023-11-14 11:20:49 +01:00
parent d59d883631
commit e6acddf121
2 changed files with 20 additions and 20 deletions

View File

@ -1577,10 +1577,10 @@ xa begin 'x1';
update t set a = 2 where a = 1; update t set a = 2 where a = 1;
xa end 'x1'; xa end 'x1';
xa prepare 'x1'; xa prepare 'x1';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
disconnect con1; disconnect con1;
connection con2; connection con2;
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa commit 'x1'; xa commit 'x1';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
connection default; connection default;
@ -1596,10 +1596,10 @@ xa begin 'x2';
insert into t values (53); insert into t values (53);
xa end 'x2'; xa end 'x2';
xa prepare 'x2'; xa prepare 'x2';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
disconnect con1; disconnect con1;
connection con2; connection con2;
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa rollback 'x2'; xa rollback 'x2';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
connection default; connection default;
@ -1618,11 +1618,11 @@ insert into t values (3);
xa end 'xuncommitted'; xa end 'xuncommitted';
xa prepare 'xuncommitted'; xa prepare 'xuncommitted';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
disconnect con1; disconnect con1;
connection default; connection default;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction ERROR HY000: Lock wait timeout exceeded; try restarting transaction
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa rollback 'xuncommitted'; xa rollback 'xuncommitted';
select * from t; select * from t;
a a
@ -1638,11 +1638,11 @@ insert into t values (3);
xa end 'committed_later'; xa end 'committed_later';
xa prepare 'committed_later'; xa prepare 'committed_later';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
disconnect con1; disconnect con1;
connection default; connection default;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction ERROR HY000: Lock wait timeout exceeded; try restarting transaction
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa commit 'committed_later'; xa commit 'committed_later';
select * from t; select * from t;
a a
@ -1659,10 +1659,10 @@ ERROR 23000: Duplicate entry '3' for key 'PRIMARY'
insert into t values (5); insert into t values (5);
xa end 'x1'; xa end 'x1';
xa prepare 'x1'; xa prepare 'x1';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
disconnect con1; disconnect con1;
connection con2; connection con2;
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa commit 'x1'; xa commit 'x1';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
connection default; connection default;

View File

@ -1810,11 +1810,11 @@ xa begin 'x1';
update t set a = 2 where a = 1; update t set a = 2 where a = 1;
xa end 'x1'; xa end 'x1';
xa prepare 'x1'; xa prepare 'x1';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
--disconnect con1 --disconnect con1
--connection con2 --connection con2
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa commit 'x1'; xa commit 'x1';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
--connection default --connection default
@ -1832,11 +1832,11 @@ xa begin 'x2';
insert into t values (53); insert into t values (53);
xa end 'x2'; xa end 'x2';
xa prepare 'x2'; xa prepare 'x2';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
--disconnect con1 --disconnect con1
--connection con2 --connection con2
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa rollback 'x2'; xa rollback 'x2';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
--connection default --connection default
@ -1858,13 +1858,13 @@ insert into t values (3);
xa end 'xuncommitted'; xa end 'xuncommitted';
xa prepare 'xuncommitted'; xa prepare 'xuncommitted';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
--disconnect con1 --disconnect con1
--connection default --connection default
--error ER_LOCK_WAIT_TIMEOUT --error ER_LOCK_WAIT_TIMEOUT
--reap # alter table --reap # alter table
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa rollback 'xuncommitted'; xa rollback 'xuncommitted';
select * from t; select * from t;
@ -1882,13 +1882,13 @@ insert into t values (3);
xa end 'committed_later'; xa end 'committed_later';
xa prepare 'committed_later'; xa prepare 'committed_later';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
--disconnect con1 --disconnect con1
--connection default --connection default
--error ER_LOCK_WAIT_TIMEOUT --error ER_LOCK_WAIT_TIMEOUT
--reap # alter table --reap # alter table
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa commit 'committed_later'; xa commit 'committed_later';
@ -1906,11 +1906,11 @@ insert into t values (4), (3);
insert into t values (5); insert into t values (5);
xa end 'x1'; xa end 'x1';
xa prepare 'x1'; xa prepare 'x1';
set debug_sync= 'THD_cleanup_after_trans_cleanup signal xa_detach'; set debug_sync= 'thread_end signal xa_detach wait_for close';
--disconnect con1 --disconnect con1
--connection con2 --connection con2
set debug_sync= 'now wait_for xa_detach'; set debug_sync= 'now signal close wait_for xa_detach';
xa commit 'x1'; xa commit 'x1';
set debug_sync= 'now signal go'; set debug_sync= 'now signal go';
--connection default --connection default