Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.5
-
None
Description
Reproduce
--source include/have_innodb.inc
|
--let $DATADIR= `select @@datadir`
|
|
create table parent (id int not null, primary key (id)) engine=innodb; |
select * from parent; |
--remove_file $datadir/test/parent.frm
|
|
drop table parent; |
create table parent (id int not null, primary key (id)) engine=innodb; |
|
# Cleanup
|
drop table parent; |
Result
mysqltest: At line 9: query 'create table parent (id int not null, primary key (id)) engine=innodb' failed: 1050: Table 'parent' already exists
|
Related tests
main.drop_table_force
Attachments
Issue Links
- blocks
-
MDEV-16417 Store Foreign Key metadata outside of InnoDB
- In Review
- is caused by
-
MDEV-11412 Ensure that table is truly dropped when using DROP TABLE
- Closed