summaryrefslogtreecommitdiff
path: root/mysql-test/r/preload.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/preload.result')
-rw-r--r--mysql-test/r/preload.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/preload.result b/mysql-test/r/preload.result
index 4d9293c7929..bd7b828d5b9 100644
--- a/mysql-test/r/preload.result
+++ b/mysql-test/r/preload.result
@@ -69,7 +69,7 @@ flush status;
select @@preload_buffer_size;
@@preload_buffer_size
32768
-load index into cache t1 keys;
+load index into cache t1;
Table Op Msg_type Msg_text
test.t1 preload_keys status OK
show status like "key_read%";
@@ -93,7 +93,7 @@ set session preload_buffer_size=256*1024;
select @@preload_buffer_size;
@@preload_buffer_size
262144
-load index into cache t1 keys ignore leaves;
+load index into cache t1 ignore leaves;
Table Op Msg_type Msg_text
test.t1 preload_keys status OK
show status like "key_read%";
@@ -117,7 +117,7 @@ set session preload_buffer_size=1*1024;
select @@preload_buffer_size;
@@preload_buffer_size
1024
-load index into cache t1 keys, t2 keys (primary,b) ignore leaves;
+load index into cache t1, t2 keys (primary,b) ignore leaves;
Table Op Msg_type Msg_text
test.t1 preload_keys status OK
test.t2 preload_keys status OK
@@ -141,7 +141,7 @@ show status like "key_read%";
Variable_name Value
Key_read_requests 0
Key_reads 0
-load index into cache t3 keys, t2 keys (primary,b) ;
+load index into cache t3, t2 keys (primary,b) ;
Table Op Msg_type Msg_text
test.t3 preload_keys error Table 'test.t3' doesn't exist
test.t2 preload_keys status OK