summaryrefslogtreecommitdiff
path: root/mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff')
-rw-r--r--mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff11
1 files changed, 6 insertions, 5 deletions
diff --git a/mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff b/mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff
index 8965b2118a2..e9c7485d118 100644
--- a/mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff
+++ b/mysql-test/suite/plugins/r/compression,innodb-snappy.rdiff
@@ -1,6 +1,6 @@
--- suite/plugins/r/compression.result
+++ suite/plugins/r/compression.reject
-@@ -1,9 +1,9 @@
+@@ -1,8 +1,8 @@
#
-# Testing bzip2 compression provider with innodb
+# Testing snappy compression provider with innodb
@@ -10,14 +10,15 @@
+set global innodb_compression_algorithm = snappy;
call mtr.add_suppression("Background Page read failed to read, uncompress, or decrypt");
call mtr.add_suppression("Table is compressed or encrypted but uncompress or decrypt failed");
- call mtr.add_suppression("InnoDB: Table `test`.`t1` is compressed with (\\w+) \\(\\d\\), which is not currently loaded. Please load the '\\1' provider plugin to open the table.");
- create table t1 (a int, b text ) engine = innodb page_compressed = 1;
-@@ -14,7 +14,7 @@
+ call mtr.add_suppression("Table .*t1.* is compressed with (\\w+), which is not currently loaded. Please load the \\1 provider plugin to open the table");
+@@ -15,8 +15,8 @@
0 abcabcabc 300
1 defdefdef 3000
2 ghighighi 30000
-# restart: --disable-provider-bzip2
+# restart: --disable-provider-snappy
select a, left(b, 9), length(b) from t1;
- ERROR 42S02: Table 'test.t1' doesn't exist in engine
+-ERROR HY000: Table test/t1 is compressed with bzip2, which is not currently loaded. Please load the bzip2 provider plugin to open the table
++ERROR HY000: Table test/t1 is compressed with snappy, which is not currently loaded. Please load the snappy provider plugin to open the table
drop table t1;
+ # restart