summaryrefslogtreecommitdiff
path: root/mysql-test/t/preload.test
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2004-02-02 00:19:51 -0800
committerunknown <igor@rurik.mysql.com>2004-02-02 00:19:51 -0800
commitc91c1470c8294a4ebdec2f31f115c8a05693f4f5 (patch)
treec71ddca4e9779a2be69c509dbd4f0af6035b82af /mysql-test/t/preload.test
parent150c99dffe2737ef4de7534bf297ff6943612cd0 (diff)
downloadmariadb-git-c91c1470c8294a4ebdec2f31f115c8a05693f4f5.tar.gz
preload.result, key_cache.result, preload.test, key_cache.test, sql_yacc.yy:
Fixed bug #2602 in CACHE INDEX, LOAD INDEX sql/sql_yacc.yy: Fixed bug #2602 in CACHE INDEX, LOAD INDEX mysql-test/t/key_cache.test: Fixed bug #2602 in CACHE INDEX, LOAD INDEX mysql-test/t/preload.test: Fixed bug #2602 in CACHE INDEX, LOAD INDEX mysql-test/r/key_cache.result: Fixed bug #2602 in CACHE INDEX, LOAD INDEX mysql-test/r/preload.result: Fixed bug #2602 in CACHE INDEX, LOAD INDEX
Diffstat (limited to 'mysql-test/t/preload.test')
-rw-r--r--mysql-test/t/preload.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/preload.test b/mysql-test/t/preload.test
index 7eff5cee08f..7a049d06a86 100644
--- a/mysql-test/t/preload.test
+++ b/mysql-test/t/preload.test
@@ -81,7 +81,7 @@ flush tables; flush status;
show status like "key_read%";
set session preload_buffer_size=1*1024;
select @@preload_buffer_size;
-load index into cache t1, t2 keys (primary,b) ignore leaves;
+load index into cache t1, t2 key (primary,b) ignore leaves;
show status like "key_read%";
select count(*) from t1 where b = 'test1';
select count(*) from t2 where b = 'test1';
@@ -89,12 +89,12 @@ show status like "key_read%";
flush tables; flush status;
show status like "key_read%";
-load index into cache t3, t2 keys (primary,b) ;
+load index into cache t3, t2 key (primary,b) ;
show status like "key_read%";
flush tables; flush status;
show status like "key_read%";
-load index into cache t3 keys (b), t2 keys (c) ;
+load index into cache t3 key (b), t2 key (c) ;
show status like "key_read%";
drop table t1, t2;