summaryrefslogtreecommitdiff
path: root/mysql-test/r/handler.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2003-01-28 14:36:22 +0100
committerunknown <serg@serg.mysql.com>2003-01-28 14:36:22 +0100
commitd490b56ed1d309cad0ace21a8542983702750f62 (patch)
tree440af93c0ae6daf3a1db266aa402a888dc276e30 /mysql-test/r/handler.result
parent3595556335b31d908555da9abaa669d3cfcce1e2 (diff)
downloadmariadb-git-d490b56ed1d309cad0ace21a8542983702750f62.tar.gz
fixed "DROP table_open_in_handler" hang
Diffstat (limited to 'mysql-test/r/handler.result')
-rw-r--r--mysql-test/r/handler.result8
1 files changed, 7 insertions, 1 deletions
diff --git a/mysql-test/r/handler.result b/mysql-test/r/handler.result
index 35765c48049..9760719ecf2 100644
--- a/mysql-test/r/handler.result
+++ b/mysql-test/r/handler.result
@@ -136,4 +136,10 @@ a b
handler t2 read last;
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
handler t2 close;
-drop table if exists t1;
+handler t1 open as t2;
+drop table t1;
+create table t1 (a int);
+insert into t1 values (17);
+handler t2 read first;
+Unknown table 't2' in HANDLER
+drop table t1;