mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.2' into 10.3
This commit is contained in:
13
mysql-test/main/assign_key_cache.result
Normal file
13
mysql-test/main/assign_key_cache.result
Normal file
@ -0,0 +1,13 @@
|
||||
set global my_cache.key_buffer_size = 1024*1024;
|
||||
create table t1 (i int) engine=myisam partition by hash (i) partitions 2;
|
||||
xa start 'xid';
|
||||
cache index t1 partition (non_existing_partition) in my_cache;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 assign_to_keycache error Error in list of partitions to test.t1
|
||||
cache index t1 partition (p1) in my_cache;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 assign_to_keycache status OK
|
||||
xa end 'xid';
|
||||
xa rollback 'xid';
|
||||
drop table t1;
|
||||
set global my_cache.key_buffer_size = 0;
|
Reference in New Issue
Block a user