9 lines
222 B
Plaintext
9 lines
222 B
Plaintext
#
|
|
# Bug #19929435 DROP DATABASE HANGS WITH MALFORMED TABLE
|
|
#
|
|
create database `b`;
|
|
use `b`;
|
|
create table `#mysql50#q.q` (f1 int primary key) engine=innodb;
|
|
ERROR HY000: Got error 1103 from storage engine
|
|
drop database `b`;
|