diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-01-28 14:33:33 -0200 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2009-01-28 14:33:33 -0200 |
commit | aa0641dcf6da9d5ecf70d9963a61b2deac81b0b8 (patch) | |
tree | b0dc0d9af6e42a95746f325e0fa8ce34f075b6ac /mysql-test/t | |
parent | 06e185280a4c2b6bae6f4b1b5a66947a49a449bd (diff) | |
download | mariadb-git-aa0641dcf6da9d5ecf70d9963a61b2deac81b0b8.tar.gz |
Remove test case for bug 40264.
Dirty close tricky does not work on Windows.
mysql-test/r/query_cache_notembedded.result:
Remove test case result.
mysql-test/t/query_cache_notembedded.test:
Remove test case.
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/query_cache_notembedded.test | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mysql-test/t/query_cache_notembedded.test b/mysql-test/t/query_cache_notembedded.test index c427e0d1afc..421ec913e5d 100644 --- a/mysql-test/t/query_cache_notembedded.test +++ b/mysql-test/t/query_cache_notembedded.test @@ -223,33 +223,4 @@ connection default; set GLOBAL query_cache_size=0; -# -# Bug#40264: Aborted cached query causes query to hang indefinitely on next cache hit -# - ---disable_warnings -DROP TABLE IF EXISTS t1; ---enable_warnings - -FLUSH STATUS; -SET GLOBAL query_cache_size=1048576; -CREATE TABLE t1 (a INT); -INSERT INTO t1 VALUES (1),(2),(3),(4),(5); -SHOW STATUS LIKE 'Qcache_queries_in_cache'; -LOCK TABLES t1 WRITE; -connect(con1,localhost,root,,); ---send SELECT * FROM t1 -connection default; -let $show_type= open tables where `table`='t1' and in_use=2; -let $show_pattern= '%t1%2%'; ---source include/wait_show_pattern.inc -dirty_close con1; -UNLOCK TABLES; -let $show_type= open tables where `table`='t1' and in_use=0; -let $show_pattern= '%t1%0%'; ---source include/wait_show_pattern.inc -SHOW STATUS LIKE 'Qcache_queries_in_cache'; -DROP TABLE t1; -SET GLOBAL query_cache_size= default; - # End of 5.0 tests |