1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixed "DROP table_open_in_handler" hang

This commit is contained in:
unknown
2003-01-28 14:36:22 +01:00
parent 3595556335
commit d490b56ed1
5 changed files with 49 additions and 21 deletions

View File

@ -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;