summaryrefslogtreecommitdiff
path: root/mysql-test/r/handler_myisam.result
diff options
context:
space:
mode:
authorunknown <davi@moksha.com.br>2007-10-10 21:39:22 -0300
committerunknown <davi@moksha.com.br>2007-10-10 21:39:22 -0300
commit27e2f30e05e89a4926f5b03661168d572e7153da (patch)
tree5cc59b725714e24fab250558207fd5992a7a0c6e /mysql-test/r/handler_myisam.result
parentb24d4a977f2bf0148341ee82e78f06fd3d3bd2b3 (diff)
downloadmariadb-git-27e2f30e05e89a4926f5b03661168d572e7153da.tar.gz
Post-merge test case for Bug 31409
mysql-test/include/handler.inc: Add test case for Bug 31409 mysql-test/r/handler_innodb.result: Add test case result for InnoDB run of the handler test for Bug 31409 mysql-test/r/handler_myisam.result: Add test case result for MyISAM run of the handler test for Bug 31409
Diffstat (limited to 'mysql-test/r/handler_myisam.result')
-rw-r--r--mysql-test/r/handler_myisam.result18
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/r/handler_myisam.result b/mysql-test/r/handler_myisam.result
index bc4a8e9081a..715e5ab03d6 100644
--- a/mysql-test/r/handler_myisam.result
+++ b/mysql-test/r/handler_myisam.result
@@ -554,6 +554,24 @@ c1
2
handler t1 read next;
c1
+1
handler t1 close;
handler t2 close;
drop table t1,t2;
+drop table if exists t1,t2;
+create table t1 (c1 int);
+connection: default
+handler t1 open;
+handler t1 read first;
+c1
+connection: flush
+rename table t1 to t2;;
+connection: default
+handler t2 open;
+handler t2 read first;
+c1
+handler t1 read next;
+ERROR 42S02: Table 'test.t1' doesn't exist
+handler t1 close;
+handler t2 close;
+drop table t2;