Current Path : /home/usr.opt/mysql57/mysql-test/suite/innodb/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/innodb/r/import_tablespace_page_corrupt.result |
CREATE TABLE t1(f1 INT PRIMARY KEY AUTO_INCREMENT, f2 INT, f3 CHAR, f4 TEXT) ENGINE=InnoDB; DELETE FROM t1 WHERE f1%2=0; FLUSH TABLES t1 FOR EXPORT; UNLOCK TABLES; DROP TABLE t1; CREATE TABLE t1(f1 INT PRIMARY KEY AUTO_INCREMENT, f2 INT, f3 CHAR, f4 TEXT) ENGINE=InnoDB; ALTER TABLE t1 DISCARD TABLESPACE; SET SESSION debug="+d,ib_import_page_corrupt"; ALTER TABLE t1 IMPORT TABLESPACE; ERROR HY000: Operation cannot be performed. The table 'test.t1' is missing, corrupt or contains bad data. SET SESSION debug="-d,ib_import_page_corrupt"; DROP TABLE t1;