summaryrefslogtreecommitdiff
path: root/mysql-test/r/assign_key_cache-5405.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/assign_key_cache-5405.result')
-rw-r--r--mysql-test/r/assign_key_cache-5405.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/assign_key_cache-5405.result b/mysql-test/r/assign_key_cache-5405.result
index 4a0fc58cd4f..c4cb56f3f72 100644
--- a/mysql-test/r/assign_key_cache-5405.result
+++ b/mysql-test/r/assign_key_cache-5405.result
@@ -1,12 +1,17 @@
create table t1 (f int, key(f)) engine=myisam;
set global kc1.key_buffer_size = 65536;
+connect con1, localhost, root;
set debug_sync='assign_key_cache_op_unlock wait_for op_locked';
cache index t1 in kc1;
+connection default;
set debug_sync='assign_key_cache_op_lock signal op_locked wait_for assigned';
cache index t1 in kc1;
+connection con1;
Table Op Msg_type Msg_text
test.t1 assign_to_keycache status OK
set debug_sync='now signal assigned';
+disconnect con1;
+connection default;
Table Op Msg_type Msg_text
test.t1 assign_to_keycache status OK
drop table t1;