diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2018-11-21 09:05:47 +0200 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2018-11-21 09:05:47 +0200 |
commit | 8324e5e84dc786b2d4a07d7798f26ddea239159e (patch) | |
tree | 7645747d84f34265ebf967294ceacd4c2cfcecc2 /mysql-test/include | |
parent | 41fa9a598655a15b423a7453eba5acaf5bd5d324 (diff) | |
download | mariadb-git-8324e5e84dc786b2d4a07d7798f26ddea239159e.tar.gz |
MDEV-17771: Add Galera ist and sst tests using mariabackup
Add test case for encrypted and page compressed tables.
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/innodb_encrypt_tables.combinations | 14 | ||||
-rw-r--r-- | mysql-test/include/innodb_encrypt_tables.inc | 4 |
2 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/include/innodb_encrypt_tables.combinations b/mysql-test/include/innodb_encrypt_tables.combinations new file mode 100644 index 00000000000..cb32fea998a --- /dev/null +++ b/mysql-test/include/innodb_encrypt_tables.combinations @@ -0,0 +1,14 @@ +[crypt] +innodb_encrypt_tables=ON +plugin-load-add=$FILE_KEY_MANAGEMENT_SO +loose-file-key-management +loose-file-key-management-filename=$MYSQL_TEST_DIR/std_data/keys.txt +file-key-management-encryption-algorithm=aes_ctr + +[clear] +innodb_encrypt_tables=OFF +plugin-load-add=$FILE_KEY_MANAGEMENT_SO +loose-file-key-management +loose-file-key-management-filename=$MYSQL_TEST_DIR/std_data/keys.txt +file-key-management-encryption-algorithm=aes_ctr + diff --git a/mysql-test/include/innodb_encrypt_tables.inc b/mysql-test/include/innodb_encrypt_tables.inc new file mode 100644 index 00000000000..31ab7999aef --- /dev/null +++ b/mysql-test/include/innodb_encrypt_tables.inc @@ -0,0 +1,4 @@ +# The goal of including this file is to enable innodb_encrypt_tables combinations +# (see include/innodb_encrypt_tables.combinations) + +--source include/have_innodb.inc |