mirror of
https://github.com/MariaDB/server.git
synced 2025-01-26 00:34:18 +01:00
5a21094a43
There already are ROW_FORMAT=COMPRESSED tests in innodb_zip.innochecksum_2. Use shutdown_mysqld.inc and start_mysqld.inc.
5 lines
198 B
Text
5 lines
198 B
Text
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;
|