From a175314c3e5827eb193872241446f2f8f5c9d33c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:07:14 +0200 Subject: Adding upstream version 1:10.5.12. Signed-off-by: Daniel Baumann --- mysql-test/suite/innodb/r/ibuf_not_empty.result | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mysql-test/suite/innodb/r/ibuf_not_empty.result (limited to 'mysql-test/suite/innodb/r/ibuf_not_empty.result') diff --git a/mysql-test/suite/innodb/r/ibuf_not_empty.result b/mysql-test/suite/innodb/r/ibuf_not_empty.result new file mode 100644 index 00000000..d1b8203b --- /dev/null +++ b/mysql-test/suite/innodb/r/ibuf_not_empty.result @@ -0,0 +1,17 @@ +CREATE TABLE t1( +a INT AUTO_INCREMENT PRIMARY KEY, +b CHAR(1), +c INT, +INDEX(b)) +ENGINE=InnoDB STATS_PERSISTENT=0; +SET GLOBAL innodb_change_buffering_debug = 1; +INSERT INTO t1 SELECT 0,'x',1 FROM seq_1_to_1024; +# restart: --innodb-force-recovery=6 --innodb-change-buffer-dump +check table t1; +Table Op Msg_type Msg_text +test.t1 check Warning InnoDB: Index 'b' contains 990 entries, should be 1024. +test.t1 check error Corrupt +# restart +SET GLOBAL innodb_fast_shutdown=0; +# restart +DROP TABLE t1; -- cgit v1.2.3