mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
cfc97fd026
row_create_table_for_mysql(): When the table creation fails, free the dict_table_t object.
8 lines
336 B
Text
8 lines
336 B
Text
SET @old_innodb_file_per_table=@@innodb_file_per_table;
|
|
SET GLOBAL innodb_file_per_table=0;
|
|
create table bug56947(a int not null) engine = innodb;
|
|
CREATE TABLE `bug56947#1`(a int) ENGINE=InnoDB;
|
|
alter table bug56947 add unique index (a);
|
|
ERROR HY000: Table 'test.bug56947#1' already exists
|
|
drop table `bug56947#1`;
|
|
drop table bug56947;
|