summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_zip/include
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-02-16 17:03:02 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2022-02-16 17:03:02 +0200
commitcf574cf53b168992b911d5fc32c590a6ee03a56a (patch)
tree1f31d77c8fb4c182b67c609f0a9c6818dd12eccc /mysql-test/suite/innodb_zip/include
parentcdf19cd618ed23fbf7051130b2a6b587c4a4316b (diff)
downloadmariadb-git-cf574cf53b168992b911d5fc32c590a6ee03a56a.tar.gz
MDEV-27634 innodb_zip tests failing on s390x
Some GNU/Linux distributions ship a zlib that is modified to use the s390x DFLTCC instruction. That modification would essentially redefine compressBound(sourceLen) as (sourceLen * 16 + 2308) / 8 + 6. Let us relax the tests for InnoDB ROW_FORMAT=COMPRESSED to cope with such a weaker compression guarantee. create_table_info_t::row_size_is_acceptable(): Remove a bogus debug-only assertion that would fail to hold for the test innodb_zip.bug36169. The function page_zip_empty_size() may indeed return 0.
Diffstat (limited to 'mysql-test/suite/innodb_zip/include')
-rw-r--r--mysql-test/suite/innodb_zip/include/innodb_create_tab_indx.inc2
-rw-r--r--mysql-test/suite/innodb_zip/include/innodb_load_data.inc18
2 files changed, 10 insertions, 10 deletions
diff --git a/mysql-test/suite/innodb_zip/include/innodb_create_tab_indx.inc b/mysql-test/suite/innodb_zip/include/innodb_create_tab_indx.inc
index 413a026265e..43f731a40b3 100644
--- a/mysql-test/suite/innodb_zip/include/innodb_create_tab_indx.inc
+++ b/mysql-test/suite/innodb_zip/include/innodb_create_tab_indx.inc
@@ -2,7 +2,7 @@
eval CREATE TABLE tab5(col_1 TINYBLOB, col_2 TINYTEXT,col_3 BLOB,
col_4 TEXT,col_5 MEDIUMBLOB,col_6 MEDIUMTEXT,
-col_7 LONGBLOB,col_8 LONGTEXT,col_9 VARCHAR(255))
+col_7 LONGBLOB,col_8 LONGTEXT,col_9 VARCHAR(67))
ENGINE=INNODB ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=$block_size;
diff --git a/mysql-test/suite/innodb_zip/include/innodb_load_data.inc b/mysql-test/suite/innodb_zip/include/innodb_load_data.inc
index 1bcb30131ac..88bd67ee320 100644
--- a/mysql-test/suite/innodb_zip/include/innodb_load_data.inc
+++ b/mysql-test/suite/innodb_zip/include/innodb_load_data.inc
@@ -1,14 +1,14 @@
--echo # Load the data
-SET @col_1 = repeat('a', 100);
-SET @col_2 = repeat('b', 100);
-SET @col_3 = repeat('c', 100);
-SET @col_4 = repeat('d', 100);
-SET @col_5 = repeat('e', 100);
-SET @col_6 = repeat('f', 100);
-SET @col_7 = repeat('g', 100);
-SET @col_8 = repeat('h', 100);
-SET @col_9 = repeat('i', 100);
+SET @col_1 = repeat('a', 67);
+SET @col_2 = repeat('b', 67);
+SET @col_3 = repeat('c', 67);
+SET @col_4 = repeat('d', 67);
+SET @col_5 = repeat('e', 67);
+SET @col_6 = repeat('f', 67);
+SET @col_7 = repeat('g', 67);
+SET @col_8 = repeat('h', 67);
+SET @col_9 = repeat('i', 67);
while ($i) {