mirror of
https://github.com/MariaDB/server.git
synced 2025-12-09 08:01:34 +03:00
There already are ROW_FORMAT=COMPRESSED tests in innodb_zip.innochecksum_2. Use shutdown_mysqld.inc and start_mysqld.inc.
6 lines
198 B
Plaintext
6 lines
198 B
Plaintext
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY, b TEXT) ENGINE=InnoDB;
|
|
INSERT INTO t1 (b) VALUES ('corrupt me');
|
|
INSERT INTO t1 (b) VALUES ('corrupt me');
|
|
# Run innochecksum on t1
|
|
DROP TABLE t1;
|