From 00fd99c48465efc5fdf33c4c3f732fcf4a2fd7f5 Mon Sep 17 00:00:00 2001 From: Ajo Robert Date: Mon, 22 Jun 2015 12:09:59 +0530 Subject: [PATCH] Bug #18075170 SQL NODE RESTART REQUIRED TO AVOID DEADLOCK AFTER RESTORE Post push test fix. --- mysql-test/t/myisam_recover.test | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mysql-test/t/myisam_recover.test b/mysql-test/t/myisam_recover.test index 335c5e34bf0..102cd8762a4 100644 --- a/mysql-test/t/myisam_recover.test +++ b/mysql-test/t/myisam_recover.test @@ -124,7 +124,6 @@ connection default; --echo # middle of transaction, without aborting it. connection default; ---let $MYSQL_DATA_DIR=`select @@datadir` create table t1 (a int, key(a)) engine=myisam; create table t2 (a int); @@ -151,7 +150,7 @@ select * from t2; --echo # Without fix select from t1 will break the transaction. After the fix --echo # transaction should be active and should hold lock on table t2. Alter --echo # table from con2 will wait only if the transaction is not broken. ---replace_result $MYSQL_DATA_DIR '' ./ '' test/ '' +--replace_regex /'.*[\/\\]/'/ select * from t1; connect(con2, localhost, root);