Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.5, 10.6, 10.11, 11.4
Description
In fil_space_t::create() there is the following condition:
const bool rotate = |
(purpose == FIL_TYPE_TABLESPACE
|
&& (mode == FIL_ENCRYPTION_ON
|
|| mode == FIL_ENCRYPTION_OFF || srv_encrypt_tables)
|
&& fil_crypt_must_default_encrypt());
|
This code had been added in MDEV-14180. It looks like the condition
mode == FIL_ENCRYPTION_OFF || srv_encrypt_tables
|
had better be replaced with the following condition:
mode == FIL_ENCRYPTION_DEFAULT && srv_encrypt_tables
|
Attachments
Issue Links
- is caused by
-
MDEV-14180 Automatically disable key rotation checks for file_key_management plugin
- Closed