diff options
Diffstat (limited to 'sql/set_var.cc')
-rw-r--r-- | sql/set_var.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/set_var.cc b/sql/set_var.cc index 5c7220da54d..f10df7fa6f8 100644 --- a/sql/set_var.cc +++ b/sql/set_var.cc @@ -3978,7 +3978,7 @@ byte *sys_var_event_scheduler::value_ptr(THD *thd, enum_var_type type, { if (Events::opt_event_scheduler == 0) thd->sys_var_tmp.long_value= 0; - else if (Events::get_instance()->is_started()) + else if (Events::get_instance()->is_execution_of_events_started()) thd->sys_var_tmp.long_value= 1; else thd->sys_var_tmp.long_value= 2; |