diff options
author | Michael Widenius <monty@askmonty.org> | 2009-03-13 00:29:39 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2009-03-13 00:29:39 +0200 |
commit | 67579fd290e5191252ec0acdc1917c59b42a1739 (patch) | |
tree | c18544ff7c175d4c30aab3d39288c34de3931150 | |
parent | 4fe342500953e9cf337aae462fb512a7cec176f8 (diff) | |
download | mariadb-git-67579fd290e5191252ec0acdc1917c59b42a1739.tar.gz |
Added missing fix from last commit
-rw-r--r-- | mysql-test/r/merge-big.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/merge-big.result b/mysql-test/r/merge-big.result index e34ebbd9578..967c550e42a 100644 --- a/mysql-test/r/merge-big.result +++ b/mysql-test/r/merge-big.result @@ -7,7 +7,7 @@ drop table if exists t1,t2,t3,t4,t5,t6; CREATE TABLE t1 (c1 INT) ENGINE= MyISAM; LOCK TABLE t1 WRITE; # connection con1 -SET SESSION debug="+d,sleep_open_and_lock_after_open"; +SET GLOBAL debug="+d,sleep_open_and_lock_after_open"; INSERT INTO t1 VALUES (1); # connection default # Let INSERT go into thr_multi_lock(). @@ -21,6 +21,6 @@ SELECT * FROM t1; c1 UNLOCK TABLES; # connection con1 -SET SESSION debug="-d,sleep_open_and_lock_after_open"; +SET GLOBAL debug="-d,sleep_open_and_lock_after_open"; # connection default DROP TABLE t1; |