Skip to content

Commit

Permalink
MDEV-20143 innodb.innodb-virtual-columns-debug failed in buildbot wit…
Browse files Browse the repository at this point in the history
…h wrong result

there was a SELECT/DELETE race
  • Loading branch information
FooBarrior committed Sep 10, 2019
1 parent 879c9dd commit acf0f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ SET debug_sync= "ib_open_after_dict_open SIGNAL delete_open WAIT_FOR another_ope
DELETE FROM t1;
connection default;
SET debug_sync= "now WAIT_FOR delete_open";
SET debug_sync= "ib_open_after_dict_open SIGNAL another_open";
SELECT a FROM t1;
a
NULL
NULL
SET debug_sync= "now SIGNAL another_open";
connection con1;
disconnect con1;
connection default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ SET debug_sync= "ib_open_after_dict_open SIGNAL delete_open WAIT_FOR another_ope
DELETE FROM t1;
--connection default
SET debug_sync= "now WAIT_FOR delete_open";
SET debug_sync= "ib_open_after_dict_open SIGNAL another_open";
SELECT a FROM t1;
SET debug_sync= "now SIGNAL another_open";
--connection con1
--reap

Expand Down

0 comments on commit acf0f2d

Please sign in to comment.