diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-04 11:05:04 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-04 11:05:04 +0200 |
commit | 33f3c93e6feb9550e465b2373c2ba24fa65a4967 (patch) | |
tree | 8c451d5168d697337c7e94b6ba99b9056a6b8935 /mysql-test/r/windows.result | |
parent | 2901497b187ffcefbec73c4ac9b5270174e8682c (diff) | |
download | mariadb-git-33f3c93e6feb9550e465b2373c2ba24fa65a4967.tar.gz |
MDEV-4161 Assertion `status_var.memory_used == 0' fails in virtual THD::~THD()
init join->top_join_tab_count to be in sync with join->join_tab=stat,
otherwise a query can be killed in-between and join_tab's won't be deleted
(JOIN::cleanup won't call JOIN_TAB::cleanup)
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r-- | mysql-test/r/windows.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result index dc624a07f4f..d0cdd858d4a 100644 --- a/mysql-test/r/windows.result +++ b/mysql-test/r/windows.result @@ -16,7 +16,7 @@ CREATE TABLE t1 (a int, b int); INSERT INTO t1 VALUES (1,1); EXPLAIN SELECT * FROM t1 WHERE b = (SELECT max(2)); id select_type table type possible_keys key key_len ref rows Extra -1 PRIMARY t1 system NULL NULL NULL NULL 1 +1 PRIMARY NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables 2 SUBQUERY NULL NULL NULL NULL NULL NULL NULL No tables used DROP TABLE t1; CREATE DATABASE `TESTDB`; |