mirror of
https://github.com/MariaDB/server.git
synced 2025-02-10 15:35:34 +01:00
![Marko Mäkelä](/assets/img/avatar_default.png)
ha_innobase::referenced_by_foreign_key(): Protect the check with dict_sys.freeze(), to prevent races with TRUNCATE TABLE. The test innodb.instant_alter_crash has been adjusted for this additional locking. dict_table_is_referenced_by_foreign_key(): Removed (merged to the only caller). create_table_info_t::create_table(): Ignore missing indexes for FOREIGN KEY constraints if foreign_key_checks=0. create_table_info_t::create_table_update_dict(): Rewritten as a static function. Do not return any error. ha_innobase::create(): When trx!=nullptr and we are operating on a persistent table, do not rollback, commit, or release the data dictionary latch. ha_innobase::truncate(): Protect the entire critical section with an exclusive dict_sys.latch, so that ha_innobase::referenced_by_foreign_key() on referenced tables will return a consistent result. In case of a failure, invoke dict_load_foreigns() to restore also any FOREIGN KEY constraints. ha_innobase::free_foreign_key_create_info(): Define inline. lock_release(): Disregard innodb_evict_tables_on_commit_debug=ON when dict_sys.locked() holds. It would hold when fts_load_stopword() is invoked by create_table_info_t::create_table_update_dict(). dict_sys_t::locked(): Return whether the current thread is holding the exclusive dict_sys.latch. dict_sys_t::frozen_not_locked(): Return whether any thread is holding a shared dict_sys.latch. In the test main.mysql_upgrade, the InnoDB persistent statistics will no longer be recalculated in ha_innobase::open() as part of CHECK TABLE ... FOR UPGRADE. They were deleted earlier in the test. Tested by: Matthias Leich
125 lines
2.4 KiB
Text
125 lines
2.4 KiB
Text
--source include/have_innodb.inc
|
|
--source include/default_charset.inc
|
|
|
|
#
|
|
# MDEV-10083: Orphan ibd file when playing with foreign keys
|
|
#
|
|
--disable_query_log
|
|
SET @start_global_fpt = @@global.innodb_file_per_table;
|
|
SET @start_global_fkc = @@global.foreign_key_checks;
|
|
--enable_query_log
|
|
|
|
set global innodb_file_per_table = 1;
|
|
|
|
--disable_warnings
|
|
drop table if exists b;
|
|
drop database if exists bug_fk;
|
|
--enable_warnings
|
|
|
|
let $MYSQLD_DATADIR = `select @@datadir`;
|
|
|
|
create database bug_fk;
|
|
use bug_fk;
|
|
|
|
CREATE TABLE b (
|
|
b int unsigned NOT NULL,
|
|
d1 datetime NOT NULL,
|
|
PRIMARY KEY (b,d1)
|
|
) ENGINE=InnoDB;
|
|
|
|
CREATE TABLE c (
|
|
b int unsigned NOT NULL,
|
|
d1 datetime NOT NULL,
|
|
d2 datetime NOT NULL,
|
|
PRIMARY KEY (b,d1),
|
|
CONSTRAINT b_fk FOREIGN KEY (b) REFERENCES b (b)
|
|
) ENGINE=InnoDB;
|
|
|
|
show warnings;
|
|
|
|
set foreign_key_checks = 0;
|
|
|
|
DROP TABLE IF EXISTS b;
|
|
|
|
show create table c;
|
|
|
|
#
|
|
# Note that column b has different type in parent table
|
|
#
|
|
CREATE TABLE b (
|
|
b bigint unsigned NOT NULL,
|
|
d1 date NOT NULL,
|
|
PRIMARY KEY (b,d1)
|
|
) ENGINE=InnoDB;
|
|
DROP TABLE b;
|
|
|
|
set foreign_key_checks = 1;
|
|
--error ER_CANT_CREATE_TABLE
|
|
CREATE TABLE b (
|
|
b bigint unsigned NOT NULL,
|
|
d1 date NOT NULL,
|
|
PRIMARY KEY (b,d1)
|
|
) ENGINE=InnoDB;
|
|
|
|
show warnings;
|
|
set foreign_key_checks = 0;
|
|
|
|
DROP TABLE IF EXISTS d;
|
|
|
|
CREATE TABLE d (
|
|
b bigint unsigned NOT NULL,
|
|
d1 date NOT NULL,
|
|
PRIMARY KEY (b,d1),
|
|
CONSTRAINT bd_fk FOREIGN KEY (b) REFERENCES b (b)
|
|
) ENGINE=InnoDB;
|
|
|
|
show warnings;
|
|
|
|
set foreign_key_checks = 1;
|
|
|
|
show create table c;
|
|
show create table d;
|
|
|
|
#
|
|
# Table c column b used on foreign key has different type
|
|
# compared referenced column b in table b, but this
|
|
# create still produced b.ibd file. This is because
|
|
# we row_drop_table_for_mysql was called and referenced
|
|
# table is not allowed to be dropped even in case
|
|
# when actual create is not successfull.
|
|
#
|
|
--error 1005
|
|
CREATE TABLE b (
|
|
b bigint unsigned NOT NULL,
|
|
d1 date NOT NULL,
|
|
PRIMARY KEY (b,d1)
|
|
) ENGINE=InnoDB;
|
|
|
|
show warnings;
|
|
|
|
--list_files $MYSQLD_DATADIR/bug_fk b*
|
|
|
|
set foreign_key_checks=0;
|
|
|
|
drop table c;
|
|
drop table d;
|
|
|
|
--list_files $MYSQLD_DATADIR/bug_fk b*
|
|
|
|
create table b(id int) engine=innodb;
|
|
show warnings;
|
|
|
|
--list_files $MYSQLD_DATADIR/bug_fk b*
|
|
|
|
#
|
|
# Cleanup
|
|
#
|
|
--disable_query_log
|
|
SET @@global.innodb_file_per_table = @start_global_fpt;
|
|
SET @@global.foreign_key_checks = @start_global_fkc;
|
|
--enable_query_log
|
|
|
|
--disable_warnings
|
|
drop table if exists b;
|
|
drop database if exists bug_fk;
|
|
--enable_warnings
|