diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2018-12-17 07:05:27 +0200 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2018-12-17 07:05:27 +0200 |
commit | ee543beabf01c1eff15fc8e888ef62fc99efbaed (patch) | |
tree | 52cde5549ce642181fcaa9cc9f17af6a4903eba7 /mysql-test/include | |
parent | 8a46b9fe3bb9034d3559cf81505e61d07b1765a8 (diff) | |
download | mariadb-git-ee543beabf01c1eff15fc8e888ef62fc99efbaed.tar.gz |
MDEV-18021: Galera test galera_sst_mariabackup_table_options fails if AES_CTR is not available
Problem is that if you use bundled yassl AES_CTR is not supported. There is a way to detect that but as we really want to keep this test enabled did not add
skip for missing support. Changed method to AES_CBC as there is no need to
use AES_CTR.
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/innodb_encrypt_tables.combinations | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/include/innodb_encrypt_tables.combinations b/mysql-test/include/innodb_encrypt_tables.combinations index cb32fea998a..4ca9b672119 100644 --- a/mysql-test/include/innodb_encrypt_tables.combinations +++ b/mysql-test/include/innodb_encrypt_tables.combinations @@ -3,12 +3,12 @@ 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 +file-key-management-encryption-algorithm=aes_cbc [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 +file-key-management-encryption-algorithm=aes_cbc |