diff options
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/handler.result | 1 | ||||
-rw-r--r-- | mysql-test/t/handler.test | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/handler.result b/mysql-test/r/handler.result index cd39657c470..d495dde75bf 100644 --- a/mysql-test/r/handler.result +++ b/mysql-test/r/handler.result @@ -129,6 +129,7 @@ a b handler t2 read next; a b 18 eee +alter table t1 type=MyISAM; handler t2 read next; a b 19 fff diff --git a/mysql-test/t/handler.test b/mysql-test/t/handler.test index 359c5641056..4f1b11c80ff 100644 --- a/mysql-test/t/handler.test +++ b/mysql-test/t/handler.test @@ -58,8 +58,10 @@ handler t2 read a=(19) where b="yyy"; handler t2 read first; handler t2 read next; +alter table t1 type=MyISAM; handler t2 read next; !$1064 handler t2 read last; handler t2 close; drop table if exists t1; + |