mirror of
https://github.com/MariaDB/server.git
synced 2026-05-11 01:20:15 +02:00
MDEV-15384 buf_flush_LRU_list_batch() always reports n->flushed=0, n->evicted=0
MDEV-14545 Backup fails due to MLOG_INDEX_LOAD record - Changed the unsupported_redo test case to avoid checkpoint - Inserting more rows in purge_secondary test case to display evict monitor.
This commit is contained in:
parent
d251cedd8d
commit
b0c43d0c38
4 changed files with 20 additions and 6 deletions
|
|
@ -6,20 +6,23 @@ call mtr.add_suppression("InnoDB: Ignoring tablespace for `test`\\.`t21` because
|
|||
call mtr.add_suppression("InnoDB: Cannot open datafile for read-only: ");
|
||||
call mtr.add_suppression("Table .* in the InnoDB data dictionary has tablespace id .*, but tablespace with that id or name does not exist");
|
||||
CREATE TABLE t1(i INT PRIMARY KEY auto_increment, a int) ENGINE INNODB;
|
||||
alter table t1 FORCE, algorithm=inplace;
|
||||
SET GLOBAL INNODB_FAST_SHUTDOWN = 0;
|
||||
ALTER TABLE t1 FORCE, ALGORITHM=INPLACE;
|
||||
# Fails during full backup
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1(i INT PRIMARY KEY auto_increment, a int) ENGINE INNODB;
|
||||
INSERT INTO t1(a) select 1 union select 2 union select 3;
|
||||
# Create full backup , modify table, then fails during creation of
|
||||
# incremental/differential backup
|
||||
alter table t1 force, algorithm=inplace;
|
||||
drop table t1;
|
||||
SET GLOBAL INNODB_FAST_SHUTDOWN = 0;
|
||||
ALTER TABLE t1 FORCE, ALGORITHM=INPLACE;
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1(i INT) ENGINE INNODB;
|
||||
INSERT INTO t1 VALUES(1);
|
||||
CREATE TABLE t21(i INT) ENGINE INNODB;
|
||||
INSERT INTO t21 VALUES(1);
|
||||
CREATE TABLE t2(i int) ENGINE INNODB;
|
||||
SET GLOBAL INNODB_FAST_SHUTDOWN = 0;
|
||||
ALTER TABLE t21 FORCE, ALGORITHM=INPLACE;
|
||||
# Create partial backup (excluding table t21), Ignore the
|
||||
# unsupported redo log for the table t21.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue