diff options
author | Jan Lindström <jplindst@mariadb.org> | 2014-05-13 13:28:57 +0300 |
---|---|---|
committer | Jan Lindström <jplindst@mariadb.org> | 2014-05-13 13:28:57 +0300 |
commit | 9d399c9f35ca5a85152adddc1c88a304f87f660c (patch) | |
tree | 6d03009c57a70deaabf788fc384a39463981f7fe /mysql-test/include/have_innodb_32k.inc | |
parent | 0eb84da14712a9ca820533dbc1d911b3aead1658 (diff) | |
download | mariadb-git-9d399c9f35ca5a85152adddc1c88a304f87f660c.tar.gz |
MDEV-6075: Allow > 16K pages on InnoDB
This patch allows up to 64K pages for tables with DYNAMIC, COMPACT
and REDUNDANT row types. Tables with COMPRESSED row type allows
still only <= 16K page size. Note that single row size must be
still <= 16K and max key length is not affected.
Diffstat (limited to 'mysql-test/include/have_innodb_32k.inc')
-rw-r--r-- | mysql-test/include/have_innodb_32k.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/include/have_innodb_32k.inc b/mysql-test/include/have_innodb_32k.inc new file mode 100644 index 00000000000..76a8d2d59a3 --- /dev/null +++ b/mysql-test/include/have_innodb_32k.inc @@ -0,0 +1,6 @@ +if (`SELECT COUNT(*) = 0 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE LOWER(variable_name) = 'innodb_page_size' AND variable_value = 32768`) +{ + + --skip Test requires InnoDB with 32k Page size. + +}
\ No newline at end of file |