1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

fix a bug in the test

This commit is contained in:
serg@serg.mysql.com
2003-02-25 20:37:49 +01:00
parent 4b6dc79a76
commit 1ccc5944a0
2 changed files with 8 additions and 4 deletions

View File

@@ -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;