diff options
Diffstat (limited to 'mysql-test/suite/innodb_zip/r/innochecksum.result')
-rw-r--r-- | mysql-test/suite/innodb_zip/r/innochecksum.result | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb_zip/r/innochecksum.result b/mysql-test/suite/innodb_zip/r/innochecksum.result new file mode 100644 index 00000000..bb94de7a --- /dev/null +++ b/mysql-test/suite/innodb_zip/r/innochecksum.result @@ -0,0 +1,23 @@ +call mtr.add_suppression("InnoDB: Unable to read tablespace .* page no .* into the buffer pool after 100 attempts"); +call mtr.add_suppression("InnoDB: Warning: database page corruption or a failed"); +CREATE TABLE tab1(c1 INT PRIMARY KEY,c2 VARCHAR(20)) ENGINE=InnoDB; +CREATE INDEX idx1 ON tab1(c2(10)); +INSERT INTO tab1 VALUES(1, 'Innochecksum InnoDB1'); +# Shutdown the Server +# Server Default checksum = innodb +[1b]: check the innochecksum without --strict-check +[4]: check the innochecksum with --no-check ignores algorithm check, warning is expected +FOUND 1 /Error: --no-check must be associated with --write option./ in my_restart.err +[5]: check the innochecksum with short form --no-check ignores algorithm check, warning is expected +FOUND 1 /Error: --no-check must be associated with --write option./ in my_restart.err +[6]: check the innochecksum with full form strict-check & no-check , an error is expected +FOUND 1 /unknown variable 'strict-check=innodb'/ in my_restart.err +[7]: check the innochecksum with short form strict-check & no-check , an error is expected +FOUND 1 /unknown option '-C'/ in my_restart.err +FOUND 1 /ignoring option '--write' due to invalid value 'crc32'/ in my_restart.err +FOUND 1 /Error: --no-check must be associated with --write option/ in my_restart.err +# restart +SELECT * FROM tab1; +c1 c2 +1 Innochecksum InnoDB1 +DROP TABLE tab1; |