summaryrefslogtreecommitdiff
path: root/mysql-test/t/null_key.test
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-07-28 17:53:51 -0700
committerunknown <igor@rurik.mysql.com>2005-07-28 17:53:51 -0700
commit0ad1836d23d67e13c88b2c45d253844303503cc0 (patch)
tree07e4e8d57aebc9e6c6520599676596d5f07c3417 /mysql-test/t/null_key.test
parenta54ddda4c826a4142f9fb779a58577528f525d73 (diff)
downloadmariadb-git-0ad1836d23d67e13c88b2c45d253844303503cc0.tar.gz
null_key.test, null_key.result:
Made the test case for bug #12144 independent on other tests. mysql-test/r/null_key.result: Made the test case for bug #12144 independent on other tests. mysql-test/t/null_key.test: Made the test case for bug #12144 independent on other tests.
Diffstat (limited to 'mysql-test/t/null_key.test')
-rw-r--r--mysql-test/t/null_key.test6
1 files changed, 1 insertions, 5 deletions
diff --git a/mysql-test/t/null_key.test b/mysql-test/t/null_key.test
index 228b00d528a..bd37a031745 100644
--- a/mysql-test/t/null_key.test
+++ b/mysql-test/t/null_key.test
@@ -230,14 +230,10 @@ SELECT COUNT(*) FROM t3;
EXPLAIN SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
LEFT JOIN t3 ON t2.b=t3.b;
-SHOW STATUS LIKE "handler_read%";
-
-
+FLUSH STATUS ;
SELECT SQL_CALC_FOUND_ROWS * FROM t1 LEFT JOIN t2 ON t1.a=t2.a
LEFT JOIN t3 ON t2.b=t3.b;
-
SHOW STATUS LIKE "handler_read%";
-
SELECT FOUND_ROWS();
DROP TABLE t1,t2,t3,t4;