mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
a8da1a3a58
row_create_table_for_mysql(): When the table creation fails, free the dict_table_t object.
11 lines
324 B
Text
11 lines
324 B
Text
#
|
|
# Bug #56947 valgrind reports a memory leak in innodb-plugin.innodb-index
|
|
#
|
|
-- source include/have_innodb_plugin.inc
|
|
|
|
create table bug56947(a int not null) engine = innodb;
|
|
CREATE TABLE `bug56947#1`(a int) ENGINE=InnoDB;
|
|
--error 156
|
|
alter table bug56947 add unique index (a);
|
|
drop table `bug56947#1`;
|
|
drop table bug56947;
|