diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-12-14 14:05:22 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-12-14 14:05:22 +0100 |
commit | 3ea35d31f02bb2d7ce7df0facd77d112be40a619 (patch) | |
tree | 25836ca2da6a0395cabb2f5786cfc45e58cf6618 /mysql-test/r | |
parent | a6145f4b62bd264ad32d2dade98eda0cc6de0dba (diff) | |
parent | beedf6b261b243ec0a2332162bface6ec7d58dd0 (diff) | |
download | mariadb-git-3ea35d31f02bb2d7ce7df0facd77d112be40a619.tar.gz |
merge
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/key_cache.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/key_cache.result b/mysql-test/r/key_cache.result index 9ada5dc0784..6513c4eb374 100644 --- a/mysql-test/r/key_cache.result +++ b/mysql-test/r/key_cache.result @@ -368,3 +368,19 @@ Variable_name Value key_cache_block_size 1536 SET GLOBAL key_cache_block_size= @bug28478_key_cache_block_size; DROP TABLE t1; +# +# Bug#12361113: crash when load index into cache +# +# Note that this creates an empty disabled key cache! +SET GLOBAL key_cache_none.key_cache_block_size = 1024; +CREATE TABLE t1 (a INT, b INTEGER NOT NULL, KEY (b) ) ENGINE = MYISAM; +INSERT INTO t1 VALUES (1, 1); +CACHE INDEX t1 in key_cache_none; +ERROR HY000: Unknown key cache 'key_cache_none' +# The bug crashed the server at LOAD INDEX below. Now it will succeed +# since the default cache is used due to CACHE INDEX failed for +# key_cache_none. +LOAD INDEX INTO CACHE t1; +Table Op Msg_type Msg_text +test.t1 preload_keys status OK +DROP TABLE t1; |