1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Allow multiple calls to mysql_server_end()

(Part of fix for Bug#25621 Error in my_thread_global_end(): 1 threads didn't exit)
Give correct error message if InnoDB table is not found
(This allows us to drop a an innodb table that is not in the InnoDB registery)
This commit is contained in:
monty@mysql.com/narttu.mysql.fi
2007-06-20 19:22:27 +03:00
parent d2fe24d1ef
commit 9a59083163
5 changed files with 41 additions and 1 deletions

View File

@@ -605,4 +605,18 @@ alter table t1 comment '123';
show create table t1;
drop table t1;
#
# Test bug when trying to drop data file which no InnoDB directory entry
#
create table t1 (a int) engine=innodb;
copy_file $MYSQLTEST_VARDIR/master-data/test/t1.frm $MYSQLTEST_VARDIR/master-data/test/t2.frm;
--error 1146
select * from t2;
drop table t1;
--error 1051
drop table t2;
create table t2 (a int);
drop table t2;
--echo End of 5.0 tests