You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARNING
The following query
SELECT * from performance_schema.global_variables;
displays a deprecation warning related to the global variable 'sql_log_bin',
because of special logic implemented for this very variable for backward
compatibility reasons.
See the resolution of
Bug#67433 Using SET GLOBAL SQL_LOG_BIN should not be allowed
for details.
This fix filters out explicitly variable 'sql_log_bin'
from table performance_schema.global_variables because:
- this variable is not intended to be global,
- there is no need to preserve backward compatibility
for this table since it is new, unlike the existing
table INFORMATION_SCHEMA.global_variables.
(cherry picked from commit 56f6154ed5ae5cb51f658000d4af2725d2129f55)
Warning 1287 '@@global.sql_log_bin' is deprecated and will be removed in a future release. Please use the constant 1 (since @@global.sql_log_bin is always equal to 1) instead
0 commit comments