diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-06-06 09:34:09 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-06-06 09:34:09 +0300 |
commit | d8d39721dfef6b965d782e6099493c36150585cf (patch) | |
tree | 4c1a4089c06bc5d94a187fee44bedfa0afc8872a /mysql-test/include | |
parent | 151daaf4805d4e8ed30d2d871ac99ff1c1873bdc (diff) | |
download | mariadb-git-d8d39721dfef6b965d782e6099493c36150585cf.tar.gz |
Follow-up to MDEV-12042 (test innodb_page_size variants)
innodb_page_size_small: A new set of combinations, for
innodb_page_size up to 16k. In MariaDB 10.0, this does not
make a difference, but in 10.1 and later, innodb_page_size
would cover 32k and 64k, for which ROW_FORMAT=COMPRESSED
is not available.
Enable these combinations in a few InnoDB tests.
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/innodb_page_size_small.combinations | 8 | ||||
-rw-r--r-- | mysql-test/include/innodb_page_size_small.inc | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/include/innodb_page_size_small.combinations b/mysql-test/include/innodb_page_size_small.combinations new file mode 100644 index 00000000000..a9b7c7ce14d --- /dev/null +++ b/mysql-test/include/innodb_page_size_small.combinations @@ -0,0 +1,8 @@ +[16k] +innodb-page-size=16K + +[8k] +innodb-page-size=8K + +[4k] +innodb-page-size=4K diff --git a/mysql-test/include/innodb_page_size_small.inc b/mysql-test/include/innodb_page_size_small.inc new file mode 100644 index 00000000000..754b640da86 --- /dev/null +++ b/mysql-test/include/innodb_page_size_small.inc @@ -0,0 +1,4 @@ +# The goal of including this file is to enable innodb_page_size combinations +# (see include/innodb_page_size.combinations) + +--source include/have_innodb.inc |