Not a Bug
Details
Assignee
UnassignedUnassignedReporter
C WC WAffects versions
Priority
Medium
Details
Details
Assignee
Unassigned
UnassignedReporter
C W
C WAffects versions
Priority
Smart Checklist
Smart Checklist
Smart Checklist
Created May 6, 2019 at 2:14 PM
Updated March 6, 2024 at 12:11 PM
Resolved September 2, 2019 at 4:13 PM
The value reported for
innodb_redo_log_encrypt
is inconsistent with upstream and other ON/OFF variables.Upstream 8.0.15
mysql> set global innodb_redo_log_encrypt = on; Query OK, 0 rows affected (0.00 sec) mysql> show global variables like 'innodb_redo_log_encrypt'; +-------------------------+-------+ | Variable_name | Value | +-------------------------+-------+ | innodb_redo_log_encrypt | ON | +-------------------------+-------+ 1 row in set (0.00 sec) mysql> select @@version, @@version_comment; +-----------+------------------------------+ | @@version | @@version_comment | +-----------+------------------------------+ | 8.0.15 | MySQL Community Server - GPL | +-----------+------------------------------+ 1 row in set (0.00 sec)
PS 8.0.15
mysql> select @@version, @@version_comment; +-----------+-------------------------------------------------------+ | @@version | @@version_comment | +-----------+-------------------------------------------------------+ | 8.0.15-5 | Percona Server (GPL), Release '5', Revision 'f8a9e99' | +-----------+-------------------------------------------------------+ 1 row in set (0.00 sec) mysql> set global innodb_redo_log_encrypt = on, innodb_undo_log_encrypt = on; Query OK, 0 rows affected (0.00 sec) mysql> show global variables like 'innodb_%_log_encrypt'; +-------------------------+-------+ | Variable_name | Value | +-------------------------+-------+ | innodb_redo_log_encrypt | on | | innodb_undo_log_encrypt | ON | +-------------------------+-------+ 2 rows in set (0.01 sec)