1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix removal of tables from cache when the database they are contained

within is dropped and lower_case_table_names is set. (Bug #8355)
This commit is contained in:
jimw@mysql.com
2005-02-08 15:14:14 -08:00
parent 1c2f4ffecb
commit 5ebbc834fe
4 changed files with 47 additions and 2 deletions

View File

@@ -141,3 +141,21 @@ select * from T1;
a b
1 abc
drop table T1;
create database mysqltest_LC2;
use mysqltest_LC2;
create table myUC (i int);
insert into myUC values (1),(2),(3);
select * from myUC;
i
1
2
3
use test;
drop database mysqltest_LC2;
create database mysqltest_LC2;
use mysqltest_LC2;
create table myUC (i int);
select * from myUC;
i
use test;
drop database mysqltest_LC2;