From: Davi Arnaut Date: January 22 2009 10:28am Subject: bzr commit into mysql-5.0-bugteam branch (davi:2734) Bug#40264 List-Archive: http://lists.mysql.com/commits/63797 X-Bug: 40264 Message-Id: <20090122102812.13A54EC0FC@skynet.ctb.virtua.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit # At a local mysql-5.0-bugteam repository of davi 2734 Davi Arnaut 2009-01-22 Bug#40264: Aborted cached query causes query to hang indefinitely on next cache hit The problem is that the query cache was storing partial results if the statement failed when sending the results to the client. This could cause clients to hang when trying to read the results from the cache as they would, for example, wait indefinitely for a eof packet that wasn't saved. The solution is to always discard the caching of a query that failed to send its results to the associated client. modified: mysql-test/r/query_cache_notembedded.result mysql-test/t/query_cache_notembedded.test sql/sql_cache.cc per-file messages: mysql-test/r/query_cache_notembedded.result Add test case result for Bug#40264 mysql-test/t/query_cache_notembedded.test Add test case for Bug#40264 sql/sql_cache.cc Abort if a unreported error was raised. === modified file 'mysql-test/r/query_cache_notembedded.result' --- a/mysql-test/r/query_cache_notembedded.result 2006-10-04 11:09:37 +0000 +++ b/mysql-test/r/query_cache_notembedded.result 2009-01-22 10:28:01 +0000 @@ -345,3 +345,19 @@ id drop table t1; drop function f1; set GLOBAL query_cache_size=0; +DROP TABLE IF EXISTS t1; +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'; +Variable_name Value +Qcache_queries_in_cache 0 +LOCK TABLES t1 WRITE; +SELECT * FROM t1; +UNLOCK TABLES; +SHOW STATUS LIKE 'Qcache_queries_in_cache'; +Variable_name Value +Qcache_queries_in_cache 0 +DROP TABLE t1; +SET GLOBAL query_cache_size= default; === modified file 'mysql-test/t/query_cache_notembedded.test' --- a/mysql-test/t/query_cache_notembedded.test 2006-12-19 14:31:10 +0000 +++ b/mysql-test/t/query_cache_notembedded.test 2009-01-22 10:28:01 +0000 @@ -222,3 +222,34 @@ disconnect con2; 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 === modified file 'sql/sql_cache.cc' --- a/sql/sql_cache.cc 2009-01-13 22:07:06 +0000 +++ b/sql/sql_cache.cc 2009-01-22 10:28:01 +0000 @@ -710,7 +710,12 @@ void query_cache_end_of_result(THD *thd) if (thd->net.query_cache_query == 0) DBUG_VOID_RETURN; - if (thd->killed) + /* + Check if the NET layer raised a unreported error -- my_error() and + as a consequence query_cache_abort() haven't been called. Abort the + cached result as it might be only partially complete. + */ + if (thd->killed || thd->net.report_error) { query_cache_abort(&thd->net); DBUG_VOID_RETURN;