Skip to content
  • Marc Alff's avatar
    4b403632
    Bug#20854952 SHOW GLOBAL VARIABLES RETURN WARNING ABOUT SQL_LOG_BIN BEING · 4b403632
    Marc Alff authored
    DEPRECATED
    
    Before this fix,
      SELECT @@GLOBAL.SQL_LOG_BIN
    did produce a deprecation warning, as expected.
    
    However,
      SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
    also produced a deprecation warning about SQL_LOG_BIN.
    This warning is causing confusion, and is not desirable.
    
    With this fix,
      SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
    does not produce any warnings caused by the
    deprecation of system variables.
    4b403632
    Bug#20854952 SHOW GLOBAL VARIABLES RETURN WARNING ABOUT SQL_LOG_BIN BEING
    Marc Alff authored
    DEPRECATED
    
    Before this fix,
      SELECT @@GLOBAL.SQL_LOG_BIN
    did produce a deprecation warning, as expected.
    
    However,
      SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
    also produced a deprecation warning about SQL_LOG_BIN.
    This warning is causing confusion, and is not desirable.
    
    With this fix,
      SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
    does not produce any warnings caused by the
    deprecation of system variables.
Loading