diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2022-05-13 16:13:13 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2022-06-03 12:20:19 +0300 |
commit | 12aeb9fa1526a1cc474bbaeeae8336fe424304f6 (patch) | |
tree | 6c00719d10fb82fbc8a2677f6108d121652130f4 /mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result | |
parent | 643fd51db5a1d2c226b303de584271a2f2bb7fc2 (diff) | |
download | mariadb-git-12aeb9fa1526a1cc474bbaeeae8336fe424304f6.tar.gz |
MDEV-28542 Useless output in SHOW ENGINE INNODB STATUS
srv_printf_innodb_monitor(): Only display an ADAPTIVE HASH INDEX
section if the adaptive hash index is enabled.
ibuf_print(): Only display an INSERT BUFFER section if the
change buffer is not empty.
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result b/mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result index 13e45425872..42fdf680f2e 100644 --- a/mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result +++ b/mysql-test/suite/innodb/r/innodb-change-buffer-recovery.result @@ -39,19 +39,13 @@ Table Op Msg_type Msg_text test.t1 check Error Unknown storage engine 'InnoDB' test.t1 check error Corrupt FOUND 1 /innodb_read_only prevents crash recovery/ in mysqld.1.err -# restart: --innodb-force-recovery=5 +# restart: --innodb-force-recovery=5 --debug-dbug=d,crash_after_log_ibuf_upd_inplace SELECT * FROM t1 LIMIT 1; a b c 1 X 1 -SHOW ENGINE INNODB STATUS; -Type Name Status -InnoDB insert 0, delete mark 0 SET GLOBAL innodb_fast_shutdown=0; # restart CHECK TABLE t1; Table Op Msg_type Msg_text test.t1 check status OK -SHOW ENGINE INNODB STATUS; -Type Name Status -InnoDB DROP TABLE t1; |