summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/assign_key_cache.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/assign_key_cache.result')
-rw-r--r--mysql-test/main/assign_key_cache.result13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/main/assign_key_cache.result b/mysql-test/main/assign_key_cache.result
new file mode 100644
index 00000000..32d7bc2c
--- /dev/null
+++ b/mysql-test/main/assign_key_cache.result
@@ -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 Wrong partition name or partition list
+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;