summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2003-02-25 20:37:49 +0100
committerunknown <serg@serg.mysql.com>2003-02-25 20:37:49 +0100
commit11139d6f31d2a616383cbfa1d1263b01c1c18434 (patch)
tree3fb5315223b0cfcd7ac86abd9650a46ef3d5db31 /mysql-test/t
parenta7cb587b3d27effae57d47f5437a534d09c30958 (diff)
downloadmariadb-git-11139d6f31d2a616383cbfa1d1263b01c1c18434.tar.gz
fix a bug in the test
Diffstat (limited to 'mysql-test/t')
-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;