mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
5a1868b58d
This is a merge from 10.2, but the 10.2 version of this will not be pushed into 10.2 yet, because the 10.2 version would include backports of MDEV-14717 and MDEV-14585, which would introduce a crash recovery regression: Tables could be lost on table-rebuilding DDL operations, such as ALTER TABLE, OPTIMIZE TABLE or this new backup-friendly TRUNCATE TABLE. The test innodb.truncate_crash occasionally loses the table due to the following bug: MDEV-17158 log_write_up_to() sometimes fails
126 lines
3.7 KiB
Text
126 lines
3.7 KiB
Text
--source include/have_innodb.inc
|
|
# With 32k, truncation could happen on shutdown after the test,
|
|
# and the mtr.add_suppression() would not filter out the warning.
|
|
# With 64k, no truncation seems to happen.
|
|
# --source include/innodb_page_size.inc
|
|
--source include/innodb_page_size_small.inc
|
|
--source include/have_undo_tablespaces.inc
|
|
|
|
SET @save_undo_logs = @@GLOBAL.innodb_undo_logs;
|
|
SET @save_frequency = @@GLOBAL.innodb_purge_rseg_truncate_frequency;
|
|
SET @save_truncate = @@GLOBAL.innodb_undo_log_truncate;
|
|
SET GLOBAL innodb_undo_log_truncate = 0;
|
|
SET GLOBAL innodb_undo_logs = 4;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency = 1;
|
|
|
|
SET @trunc_start=
|
|
(SELECT variable_value FROM information_schema.global_status
|
|
WHERE variable_name = 'innodb_undo_truncations');
|
|
|
|
#-----------------------------------------------------------------------------
|
|
#
|
|
# Perform DML action using multiple clients and multiple undo tablespace.
|
|
#
|
|
#
|
|
create table t1(keyc int primary key, c char(100)) engine = innodb;
|
|
create table t2(keyc int primary key, c char(100)) engine = innodb;
|
|
#
|
|
delimiter |;
|
|
CREATE PROCEDURE populate_t1()
|
|
BEGIN
|
|
DECLARE i INT DEFAULT 1;
|
|
while (i <= 20000) DO
|
|
insert into t1 values (i, 'a');
|
|
SET i = i + 1;
|
|
END WHILE;
|
|
END |
|
|
delimiter ;|
|
|
#
|
|
delimiter |;
|
|
CREATE PROCEDURE populate_t2()
|
|
BEGIN
|
|
DECLARE i INT DEFAULT 1;
|
|
while (i <= 20000) DO
|
|
insert into t2 values (i, 'a');
|
|
SET i = i + 1;
|
|
END WHILE;
|
|
END |
|
|
delimiter ;|
|
|
#
|
|
#
|
|
let DATADIR = `select @@datadir`;
|
|
connect (con1,localhost,root,,);
|
|
begin;
|
|
send call populate_t1();
|
|
|
|
connect (con2,localhost,root,,);
|
|
begin;
|
|
send call populate_t2();
|
|
|
|
connection con1; reap; send update t1 set c = 'mysql';
|
|
connection con2; reap; send update t2 set c = 'mysql';
|
|
connection con1; reap; send update t1 set c = 'oracle';
|
|
connection con2; reap; send update t2 set c = 'oracle';
|
|
connection con1; reap; send delete from t1;
|
|
connection con2; reap; delete from t2;
|
|
connection con1; reap;
|
|
|
|
let CHECKFILE = $MYSQL_TMP_DIR/check.txt;
|
|
perl;
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size1)
|
|
= stat("$ENV{DATADIR}/undo001");
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size2)
|
|
= stat("$ENV{DATADIR}/undo002");
|
|
open(OUT, ">$ENV{CHECKFILE}") || die;
|
|
print OUT "let \$size1='$size1,$size2';\n";
|
|
close(OUT);
|
|
EOF
|
|
|
|
SET GLOBAL innodb_undo_log_truncate = 1;
|
|
commit; disconnect con1;
|
|
connection con2; commit; disconnect con2;
|
|
|
|
connection default;
|
|
drop table t1, t2;
|
|
drop PROCEDURE populate_t1;
|
|
drop PROCEDURE populate_t2;
|
|
|
|
--source include/wait_all_purged.inc
|
|
|
|
# Truncation will normally not occur with innodb_page_size=64k,
|
|
# and occasionally not with innodb_page_size=32k,
|
|
# because the undo log will not grow enough.
|
|
if (`select @@innodb_page_size IN (4096,8192,16384)`)
|
|
{
|
|
let $wait_condition = (SELECT variable_value!=@trunc_start
|
|
FROM information_schema.global_status
|
|
WHERE variable_name = 'innodb_undo_truncations');
|
|
source include/wait_condition.inc;
|
|
}
|
|
|
|
--source $CHECKFILE
|
|
perl;
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size1)
|
|
= stat("$ENV{DATADIR}/undo001");
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size2)
|
|
= stat("$ENV{DATADIR}/undo002");
|
|
open(OUT, ">$ENV{CHECKFILE}") || die;
|
|
print OUT "let \$size2='$size1,$size2';\n";
|
|
close(OUT);
|
|
EOF
|
|
|
|
--source $CHECKFILE
|
|
--remove_file $CHECKFILE
|
|
|
|
if ($size1 == $size2)
|
|
{
|
|
# This fails for innodb_page_size=64k, occasionally also for 32k.
|
|
if (`select @@innodb_page_size IN (4096,8192,16384)`)
|
|
{
|
|
echo Truncation did not happen: $size1;
|
|
}
|
|
}
|
|
|
|
SET GLOBAL innodb_undo_logs = @save_undo_logs;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency = @save_frequency;
|
|
SET GLOBAL innodb_undo_log_truncate = @save_truncate;
|