mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Manual merge from mysql-5.5.
This commit is contained in:
8
mysql-test/suite/innodb/r/innodb_bug56947.result
Normal file
8
mysql-test/suite/innodb/r/innodb_bug56947.result
Normal file
@@ -0,0 +1,8 @@
|
||||
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;
|
Reference in New Issue
Block a user