diff options
author | unknown <thek@adventure.(none)> | 2008-01-11 14:16:46 +0100 |
---|---|---|
committer | unknown <thek@adventure.(none)> | 2008-01-11 14:16:46 +0100 |
commit | cedfe557be21824c78994ae235ac6226f6df119f (patch) | |
tree | 53eedf7eaaf31d0fc8064f85946931055a28e9ce /mysql-test/r/query_cache_debug.result | |
parent | 44101143f7668cc753f9f78057f164469b051760 (diff) | |
download | mariadb-git-cedfe557be21824c78994ae235ac6226f6df119f.tar.gz |
Fixed faulty test case caused by race condition.
mysql-test/r/query_cache_debug.result:
Fixed faulty test case.
Diffstat (limited to 'mysql-test/r/query_cache_debug.result')
-rw-r--r-- | mysql-test/r/query_cache_debug.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/query_cache_debug.result b/mysql-test/r/query_cache_debug.result index 4a4948c9845..f177bfac836 100644 --- a/mysql-test/r/query_cache_debug.result +++ b/mysql-test/r/query_cache_debug.result @@ -11,14 +11,14 @@ On a second connection; clear the query cache. show status like 'Qcache_queries_in_cache'; Variable_name Value Qcache_queries_in_cache 1 -set global query_cache_size= 0;; +set global query_cache_size= 0; Signal the debug hook to release the lock. select id from information_schema.processlist where state='wait_in_query_cache_insert' into @thread_id; kill query @thread_id; Show query cache status. show status like 'Qcache_queries_in_cache'; Variable_name Value -Qcache_queries_in_cache 1 +Qcache_queries_in_cache 0 set global query_cache_size= 0; use test; drop table t1; |