diff options
author | Monty <monty@mariadb.org> | 2019-10-20 15:48:20 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2019-10-20 15:48:20 +0300 |
commit | 9c735784aecb2ff42ee51a6c37175095e59133d9 (patch) | |
tree | c10713c3ed5ef045cf3652d8127b80151ba5f84a | |
parent | c2e0a0b17544bf984e21094252528110e5a323f6 (diff) | |
download | mariadb-git-9c735784aecb2ff42ee51a6c37175095e59133d9.tar.gz |
Ensure that full_crc32_import doesn't fail
Test should die if innodb_compression_algorithm=3 doesn't exists
-rw-r--r-- | mysql-test/suite/innodb/t/full_crc32_import.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/full_crc32_import.test b/mysql-test/suite/innodb/t/full_crc32_import.test index c5b50997a70..caa6329d69b 100644 --- a/mysql-test/suite/innodb/t/full_crc32_import.test +++ b/mysql-test/suite/innodb/t/full_crc32_import.test @@ -169,6 +169,8 @@ ALTER TABLE t1 IMPORT TABLESPACE; INSERT INTO t1 VALUES(2); SELECT * FROM t1; + +--error 0,1231 SET GLOBAL innodb_compression_algorithm=3; FLUSH TABLE t1 FOR EXPORT; --echo # List before copying files |