diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-09-16 16:55:16 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-09-16 21:15:38 +0300 |
commit | 836d4e74d9416a1af839f8068c5a07bee6f4b71e (patch) | |
tree | 39cee03b68cab0b0b8870c700be27c424e7ecc22 /mysql-test/include | |
parent | f24d36ae1e91cb98462139dfae41211b9e9a3a2c (diff) | |
download | mariadb-git-836d4e74d9416a1af839f8068c5a07bee6f4b71e.tar.gz |
Write proper tests for MDEV-12634: Uninitialised ROW_MERGE_RESERVE_SIZE bytes
Introduce innodb_encrypt_log.combinations and prove that
the encryption and decryption take place during both
online ADD INDEX (WL#5266) and online table-rebuilding ALTER (WL#6625).
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/innodb_encrypt_log.combinations | 7 | ||||
-rw-r--r-- | mysql-test/include/innodb_encrypt_log.inc | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/include/innodb_encrypt_log.combinations b/mysql-test/include/innodb_encrypt_log.combinations new file mode 100644 index 00000000000..fd21a57c3c2 --- /dev/null +++ b/mysql-test/include/innodb_encrypt_log.combinations @@ -0,0 +1,7 @@ +[crypt] +innodb_encrypt_log=ON +innodb_encryption_rotate_key_age=1 +plugin_load_add=$DEBUG_KEY_MANAGEMENT_SO + +[clear] +skip_innodb_encrypt_log diff --git a/mysql-test/include/innodb_encrypt_log.inc b/mysql-test/include/innodb_encrypt_log.inc new file mode 100644 index 00000000000..5beebeae81f --- /dev/null +++ b/mysql-test/include/innodb_encrypt_log.inc @@ -0,0 +1,4 @@ +# The goal of including this file is to enable innodb_encrypt_log combinations +# (see include/innodb_encrypt_log.combinations) + +--source include/have_innodb.inc |