Skip to content

Commit d3e52ff

Browse files
elenstdr-m
authored andcommitted
MDEV-21288 innodb.full_crc32_import fails due to the use of optional compression algorithm
1 parent d60dcab commit d3e52ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mysql-test/suite/innodb/t/full_crc32_import.test

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ CHECK TABLE t1;
139139
DROP TABLE t1;
140140

141141
SET @save_algo = @@GLOBAL.innodb_compression_algorithm;
142+
--error 0,ER_WRONG_VALUE_FOR_VAR
142143
SET GLOBAL innodb_compression_algorithm=2;
143144
CREATE TABLE t1(a SERIAL) PAGE_COMPRESSED=1 ENGINE=InnoDB;
144145
INSERT INTO t1 VALUES(1);
@@ -170,7 +171,7 @@ INSERT INTO t1 VALUES(2);
170171
SELECT * FROM t1;
171172

172173

173-
--error 0,1231
174+
--error 0,ER_WRONG_VALUE_FOR_VAR
174175
SET GLOBAL innodb_compression_algorithm=3;
175176
FLUSH TABLE t1 FOR EXPORT;
176177
--echo # List before copying files

0 commit comments

Comments
 (0)