summaryrefslogtreecommitdiff
path: root/mysql-test/t/innodb_handler.test
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2003-02-25 20:37:49 +0100
committerserg@serg.mysql.com <>2003-02-25 20:37:49 +0100
commit1ccc5944a04ef3ed3cb4d180d0b7b0f5694eb975 (patch)
tree3fb5315223b0cfcd7ac86abd9650a46ef3d5db31 /mysql-test/t/innodb_handler.test
parent4b6dc79a76c86cf34dcb7b1d2af04e2d656eca9a (diff)
downloadmariadb-git-1ccc5944a04ef3ed3cb4d180d0b7b0f5694eb975.tar.gz
fix a bug in the test
Diffstat (limited to 'mysql-test/t/innodb_handler.test')
-rw-r--r--mysql-test/t/innodb_handler.test6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/t/innodb_handler.test b/mysql-test/t/innodb_handler.test
index 0af822334fa..5483871494e 100644
--- a/mysql-test/t/innodb_handler.test
+++ b/mysql-test/t/innodb_handler.test
@@ -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;