mirror of
https://github.com/MariaDB/server.git
synced 2025-06-06 05:21:19 +03:00
The following options will be removed: innodb_file_format innodb_file_format_check innodb_file_format_max innodb_large_prefix They have been deprecated in MySQL 5.7.7 (and MariaDB 10.2.2) in WL#7703. The file_format column in two INFORMATION_SCHEMA tables will be removed: innodb_sys_tablespaces innodb_sys_tables Code to update the file format tag at the end of page 0:5 (TRX_SYS_PAGE in the InnoDB system tablespace) will be removed. When initializing a new database, the bytes will remain 0. All references to the Barracuda file format will be removed. Some references to the Antelope file format (meaning ROW_FORMAT=REDUNDANT or ROW_FORMAT=COMPACT) will remain. This basically ports WL#7704 from MySQL 8.0.0 to MariaDB 10.3.1: commit 4a69dc2a95995501ed92d59a1de74414a38540c6 Author: Marko Mäkelä <marko.makela@oracle.com> Date: Wed Mar 11 22:19:49 2015 +0200
226 lines
6.9 KiB
PHP
226 lines
6.9 KiB
PHP
#
|
|
# WL#6501: make truncate table atomic
|
|
#
|
|
|
|
--source include/have_innodb.inc
|
|
--source include/have_debug.inc
|
|
|
|
--disable_query_log
|
|
# suppress expected warnings
|
|
call mtr.add_suppression("Unable to truncate FTS index for table");
|
|
call mtr.add_suppression("Unable to assign a new identifier to table "
|
|
"`.*`\.`.*` after truncating it");
|
|
call mtr.add_suppression("Flagged corruption of .* in table "
|
|
"`.*`\.`.*` in TRUNCATE TABLE");
|
|
call mtr.add_suppression("Parent table of FTS auxiliary table "
|
|
".*\/.* not found");
|
|
--enable_query_log
|
|
################################################################################
|
|
#
|
|
# Will test following scenarios:
|
|
# 1. Error in assigning undo logs for truncate action.
|
|
# 2. Error while preparing for truncate.
|
|
# 3. Error while dropping/creating indexes.
|
|
# 4. Error while completing truncate of table involving FTS.
|
|
# 5. Error while updating sys-tables.
|
|
#
|
|
################################################################################
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# create test-bed
|
|
#
|
|
let $per_table = `select @@innodb_file_per_table`;
|
|
|
|
eval set global innodb_file_per_table = on;
|
|
let $WL6501_TMP_DIR = `select @@tmpdir`;
|
|
let $WL6501_DATA_DIR = `select @@datadir`;
|
|
set innodb_strict_mode=off;
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 1. Error in assigning undo logs for truncate action.
|
|
#
|
|
--echo "1. Error in assigning undo logs for truncate action."
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create $wl6501_temp table t (
|
|
i int, f float, c char,
|
|
primary key pk(i), unique findex(f), index ck(c))
|
|
engine = innodb row_format = $wl6501_row_fmt
|
|
key_block_size = $wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'a'), (2, 2.2, 'b'), (3, 3.3, 'c');
|
|
select * from t;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_assigning_undo_log";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_assigning_undo_log";
|
|
#
|
|
#check table t;
|
|
select * from t;
|
|
drop table t;
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 2. Error while preparing for truncate.
|
|
#
|
|
--echo "2. Error while preparing for truncate."
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create $wl6501_temp table t (
|
|
i int, f float, c char,
|
|
primary key pk(i), unique findex(f), index ck(c))
|
|
engine = innodb row_format = $wl6501_row_fmt
|
|
key_block_size = $wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'a'), (2, 2.2, 'b'), (3, 3.3, 'c');
|
|
select * from t;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_preparing_for_truncate";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_preparing_for_truncate";
|
|
#
|
|
#check table t;
|
|
select * from t;
|
|
drop table t;
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 3. Error while dropping/creating indexes
|
|
#
|
|
--echo "3. Error while dropping/creating indexes"
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create $wl6501_temp table t (
|
|
i int, f float, c char,
|
|
primary key pk(i), unique findex(f), index ck(c))
|
|
engine = innodb row_format = $wl6501_row_fmt
|
|
key_block_size = $wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'a'), (2, 2.2, 'b'), (3, 3.3, 'c');
|
|
select * from t;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_drop_index";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_drop_index";
|
|
#
|
|
#check table t;
|
|
--error ER_TABLE_CORRUPT, 1030
|
|
select * from t;
|
|
drop table t;
|
|
#
|
|
#
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create $wl6501_temp table t (
|
|
i int, f float, c char,
|
|
primary key pk(i), unique findex(f), index ck(c))
|
|
engine = innodb row_format = $wl6501_row_fmt
|
|
key_block_size = $wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'a'), (2, 2.2, 'b'), (3, 3.3, 'c');
|
|
select * from t;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_create_index";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_create_index";
|
|
#
|
|
#check table t;
|
|
--error ER_TABLE_CORRUPT, 1030
|
|
select * from t;
|
|
drop table t;
|
|
#
|
|
#
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create temporary table t (
|
|
i int, f float, c char,
|
|
primary key pk(i), unique findex(f), index ck(c))
|
|
engine = innodb row_format = $wl6501_row_fmt
|
|
key_block_size = $wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'a'), (2, 2.2, 'b'), (3, 3.3, 'c');
|
|
select * from t;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_temp_recreate_index";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_temp_recreate_index";
|
|
#
|
|
#check table t;
|
|
--error ER_TABLE_CORRUPT, 1030
|
|
select * from t;
|
|
drop table t;
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 4. Error while completing truncate of table involving FTS.
|
|
#
|
|
--echo "4. Error while completing truncate of table involving FTS."
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create $wl6501_temp table t (i int, f float, c char(100),
|
|
primary key pk(i), index fk(f), fulltext index ck(c))
|
|
engine=innodb row_format=$wl6501_row_fmt
|
|
key_block_size=$wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'mysql is now oracle company'),
|
|
(2, 2.2, 'innodb is part of mysql'),
|
|
(3, 3.3, 'innodb is default storage engine of mysql');
|
|
select * from t;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_during_fts_trunc";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_during_fts_trunc";
|
|
#
|
|
#check table t;
|
|
--error ER_TABLE_CORRUPT, 1030
|
|
select * from t;
|
|
drop table t;
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# 5. Error while updating sys-tables.
|
|
#
|
|
--echo "5. Error while updating sys-tables."
|
|
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
|
--disable_warnings
|
|
eval create $wl6501_temp table t (i int, f float, c char(100),
|
|
primary key pk(i), index fk(f), fulltext index ck(c))
|
|
engine=innodb row_format=$wl6501_row_fmt
|
|
key_block_size=$wl6501_kbs;
|
|
--enable_warnings
|
|
insert into t values (1, 1.1, 'mysql is now oracle company'),
|
|
(2, 2.2, 'innodb is part of mysql'),
|
|
(3, 3.3, 'innodb is default storage engine of mysql');
|
|
select * from t order by i;
|
|
#check table t;
|
|
#
|
|
set session debug = "+d,ib_err_trunc_during_sys_table_update";
|
|
--error ER_GET_ERRNO
|
|
truncate table t;
|
|
set session debug = "-d,ib_err_trunc_during_sys_table_update";
|
|
#
|
|
#check table t;
|
|
--error ER_TABLE_CORRUPT, 1030
|
|
select * from t order by i;
|
|
drop table t;
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# remove test-bed
|
|
#
|
|
eval set global innodb_file_per_table = $per_table;
|