polardbxengine/mysql-test/suite/innodb/r/log_file_size.result

53 lines
2.0 KiB
Plaintext

call mtr.add_suppression("The log sequence numbers [0-9]+ and [0-9]+ in ibdata files do not match the log sequence number [0-9]+ in the ib_logfiles");
CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB;
BEGIN;
INSERT INTO t1 VALUES (42);
# Kill and restart: --innodb-log-file-size=6M
SELECT * FROM t1;
a
INSERT INTO t1 VALUES (42);
BEGIN;
DELETE FROM t1;
# Kill and restart: --innodb-log-files-in-group=3 --innodb-log-file-size=5M
SELECT * FROM t1;
a
42
INSERT INTO t1 VALUES (123);
BEGIN;
DELETE FROM t1;
# Kill the server
Pattern "syntax error in innodb_log_group_home_dir" found
--innodb-force-recovery-crash=1
Pattern "Apply batch completed" found
--innodb-force-recovery-crash=3
Pattern "Apply batch completed" found
Pattern "Can.t initiate database recovery, running in read-only-mode" found
--innodb-force-recovery-crash=4
Pattern "Apply batch completed" found
Pattern "Resizing redo log from 3\*[0-9]+ to 2\*[0-9]+ bytes" found
--innodb-force-recovery-crash=5
Pattern "Apply batch completed" found
Pattern "Resizing redo log from 3\*[0-9]+ to 2\*[0-9]+ bytes" found
Pattern "Can.t initiate database recovery, running in read-only-mode" found
--innodb-force-recovery-crash=6
Pattern "Apply batch completed" found
Pattern "Resizing redo log from 3\*[0-9]+ to 2\*[0-9]+ bytes" found
--innodb-force-recovery-crash=7
Pattern "Cannot create log files in read-only mode" found
--innodb-force-recovery-crash=8
Pattern "Setting log file .*ib_logfile[0-9]+ size to" found
--innodb-force-recovery-crash=9
Pattern "Setting log file .*ib_logfile[0-9]+ size to" found
Pattern "Only one log file found" found
Pattern "Log file .*ib_logfile0 size 7 is not a multiple of innodb_page_size" found
Pattern "Log file .*ib_logfile1 is of different size 1048576 bytes than other log files" found
--innodb-force-recovery-crash=10
Pattern "Setting log file .*ib_logfile[0-9]+ size to" found
Pattern "Renaming log file .*ib_logfile101 to .*ib_logfile0" found
# restart: --innodb-log-files-in-group=3 --innodb-log-file-size=5M
SELECT * FROM t1;
a
42
123
DROP TABLE t1;