Commit 11139d6f authored by unknown's avatar unknown

fix a bug in the test

parent a7cb587b
...@@ -129,12 +129,14 @@ a b ...@@ -129,12 +129,14 @@ a b
handler t2 read next; handler t2 read next;
a b a b
18 eee 18 eee
handler t2 read last;
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
handler t2 close; handler t2 close;
handler t1 open as t2; handler t1 open as t2;
handler t2 read first; handler t2 read first;
a b a b
17 ddd 17 ddd
alter table t1 type=innodb; alter table t1 type=innodb;
handler t2 read last; handler t2 read first;
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Unknown table 't2' in HANDLER
drop table if exists t1; drop table if exists t1;
...@@ -62,13 +62,15 @@ handler t2 read a=(19) where b="yyy"; ...@@ -62,13 +62,15 @@ handler t2 read a=(19) where b="yyy";
handler t2 read first; handler t2 read first;
handler t2 read next; handler t2 read next;
--error 1109
handler t2 read last;
handler t2 close; handler t2 close;
handler t1 open as t2; handler t1 open as t2;
handler t2 read first; handler t2 read first;
alter table t1 type=innodb; alter table t1 type=innodb;
--error 1109 --error 1064
handler t2 read last; handler t2 read first;
drop table if exists t1; drop table if exists t1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment