Commit 11139d6f authored by unknown's avatar unknown

fix a bug in the test

parent a7cb587b
......@@ -129,12 +129,14 @@ a b
handler t2 read next;
a b
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 t1 open as t2;
handler t2 read first;
a b
17 ddd
alter table t1 type=innodb;
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 read first;
Unknown table 't2' in HANDLER
drop table if exists t1;
......@@ -62,13 +62,15 @@ handler t2 read a=(19) where b="yyy";
handler t2 read first;
handler t2 read next;
--error 1109
handler t2 read last;
handler t2 close;
handler t1 open as t2;
handler t2 read first;
alter table t1 type=innodb;
--error 1109
handler t2 read last;
--error 1064
handler t2 read first;
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