mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
1cae1af6f9
* remove old 5.2+ InnoDB support for virtual columns * enable corresponding parts of the innodb-5.7 sources * copy corresponding test cases from 5.7 * copy detailed Alter_inplace_info::HA_ALTER_FLAGS flags from 5.7 - and more detailed detection of changes in fill_alter_inplace_info() * more "innodb compatibility hooks" in sql_class.cc to - create/destroy/reset a THD (used by background purge threads) - find a prelocked table by name - open a table (from a background purge thread) * different from 5.7: - new service thread "thd_destructor_proxy" to make sure all THDs are destroyed at the correct point in time during the server shutdown - proper opening/closing of tables for vcol evaluations in + FK checks (use already opened prelocked tables) + purge threads (open the table, MDLock it, add it to tdc, close when not needed) - cache open tables in vc_templ - avoid unnecessary allocations, reuse table->record[0] and table->s->default_values - not needed in 5.7, because it overcalculates: + tell the server to calculate vcols for an on-going inline ADD INDEX + calculate vcols for correct error messages * update other engines (mroonga/tokudb) accordingly
116 lines
2.9 KiB
Text
116 lines
2.9 KiB
Text
# Test for bug #12400341: INNODB CAN LEAVE ORPHAN IBD FILES AROUND
|
|
|
|
-- source include/have_innodb.inc
|
|
-- source include/have_innodb_16k.inc
|
|
|
|
if (`select count(*)=0 from information_schema.global_variables where variable_name = 'INNODB_TRX_RSEG_N_SLOTS_DEBUG'`)
|
|
{
|
|
--skip Test requires InnoDB built with UNIV_DEBUG definition.
|
|
}
|
|
|
|
# Don't test under valgrind, undo slots of the previous test might exist still
|
|
# and cause unstable result.
|
|
--source include/not_valgrind.inc
|
|
# undo slots of the previous test might exist still
|
|
--source include/not_windows.inc
|
|
|
|
call mtr.add_suppression("InnoDB: Warning: cannot find a free slot for an undo log. Do you have too*");
|
|
call mtr.add_suppression("\\[Warning\\] InnoDB: Cannot find a free slot for an undo log. Do you have too");
|
|
|
|
--disable_query_log
|
|
set @old_innodb_trx_rseg_n_slots_debug = @@innodb_trx_rseg_n_slots_debug;
|
|
set global innodb_trx_rseg_n_slots_debug = 32;
|
|
--enable_query_log
|
|
|
|
set @old_innodb_undo_logs = @@innodb_undo_logs;
|
|
set global innodb_undo_logs=1;
|
|
|
|
show variables like "max_connections";
|
|
show variables like "innodb_thread_concurrency";
|
|
show variables like "innodb_file_per_table";
|
|
|
|
--disable_warnings
|
|
drop database if exists mysqltest;
|
|
--enable_warnings
|
|
|
|
create database mysqltest;
|
|
CREATE TABLE mysqltest.transtable (id int unsigned NOT NULL PRIMARY KEY, val int DEFAULT 0) ENGINE=InnoDB;
|
|
|
|
--disable_query_log
|
|
#
|
|
# Insert in 1 transaction which needs over 1 page undo record to avoid the insert_undo cached,
|
|
# because the cached insert_undo can be reused at "CREATE TABLE" statement later.
|
|
#
|
|
START TRANSACTION;
|
|
let $c = 1024;
|
|
while ($c)
|
|
{
|
|
eval INSERT INTO mysqltest.transtable (id) VALUES ($c);
|
|
dec $c;
|
|
}
|
|
COMMIT;
|
|
|
|
let $c = 32;
|
|
while ($c)
|
|
{
|
|
# if failed at here, it might be shortage of file descriptors limit.
|
|
connect (con$c,localhost,root,,);
|
|
dec $c;
|
|
}
|
|
--enable_query_log
|
|
|
|
select count(*) from information_schema.processlist where command != 'Daemon';
|
|
|
|
#
|
|
# fill the all undo slots
|
|
#
|
|
--disable_query_log
|
|
let $c = 32;
|
|
while ($c)
|
|
{
|
|
connection con$c;
|
|
START TRANSACTION;
|
|
eval UPDATE mysqltest.transtable SET val = 1 WHERE id = 33 - $c;
|
|
dec $c;
|
|
}
|
|
--enable_query_log
|
|
|
|
connection default;
|
|
|
|
--error ER_CANT_CREATE_TABLE
|
|
CREATE TABLE mysqltest.testtable (id int unsigned not null primary key) ENGINE=InnoDB;
|
|
|
|
select count(*) from information_schema.processlist where command != 'Daemon';
|
|
|
|
--disable_query_log
|
|
let $c = 32;
|
|
while ($c)
|
|
{
|
|
connection con$c;
|
|
ROLLBACK;
|
|
dec $c;
|
|
}
|
|
--enable_query_log
|
|
|
|
connection default;
|
|
select count(*) from information_schema.processlist where command != 'Daemon';
|
|
|
|
--disable_query_log
|
|
let $c = 32;
|
|
while ($c)
|
|
{
|
|
disconnect con$c;
|
|
dec $c;
|
|
}
|
|
--enable_query_log
|
|
|
|
#
|
|
# If the isolated .ibd file remained, the drop database should fail.
|
|
#
|
|
drop database mysqltest;
|
|
|
|
set global innodb_undo_logs = @old_innodb_undo_logs;
|
|
|
|
--disable_query_log
|
|
set global innodb_trx_rseg_n_slots_debug = @old_innodb_trx_rseg_n_slots_debug;
|
|
--enable_query_log
|