Tags: percona-ysorokin/percona-server
Tags
Bug#20379693: MISSING BREAK STATEMENT IN SWITCH "MYSQLD_GET_ONE_OPTIO…
…N" FUNCTION IN MYSQLD.C
Description:
===========
Missing break statements in switch case within
"mysqld_get_one_option" function.
case OPT_BINLOGGING_IMPOSSIBLE_MODE:
WARN_DEPRECATED(NULL, "--binlogging_impossible_mode",
"'--binlog_error_action'");
case OPT_SIMPLIFIED_BINLOG_GTID_RECOVERY:
WARN_DEPRECATED(NULL,
"--simplified_binlog_gtid_recovery",
"'--binlog_gtid_simple_recovery'");
Fix:
===
Added missing break statements.
PreviousNext