mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
MDEV-20094 was filed for the unexpected result differences for the test innodb.check_ibd_filesize.
14 lines
597 B
Plaintext
14 lines
597 B
Plaintext
#
|
|
# Bug #20445525 ADD A CONSISTENCY CHECK AGAINST DB_TRX_ID BEING
|
|
# IN THE FUTURE
|
|
#
|
|
CREATE TABLE t1(a INT) row_format=redundant engine=innoDB;
|
|
INSERT INTO t1 VALUES(1);
|
|
NOT FOUND /\[Warning\] InnoDB: A transaction id in a record of table `test`\.`t1` is newer than the system-wide maximum/ in mysqld.1.err
|
|
call mtr.add_suppression("\\[Warning\\] InnoDB: A transaction id in a record of table `test`\\.`t1` is newer than the system-wide maximum");
|
|
SELECT * FROM t1;
|
|
a
|
|
Warnings:
|
|
Warning 1642 InnoDB: Transaction id in a record of table `test`.`t1` is newer than system-wide maximum.
|
|
DROP TABLE t1;
|