mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Trivial cleanups and whitespace change in Event Scheduler code.
A larger patch is to come, this is to exclude rudimentary changes from it.
This commit is contained in:
@ -81,7 +81,7 @@ Event_queue_element_for_exec::~Event_queue_element_for_exec()
|
||||
|
||||
RETURN VALUE
|
||||
Address or NULL in case of error
|
||||
|
||||
|
||||
NOTE
|
||||
Created on THD's mem_root
|
||||
*/
|
||||
@ -174,7 +174,7 @@ Event_parse_data::init_body(THD *thd)
|
||||
while (body_begin < body_end)
|
||||
{
|
||||
|
||||
if ((*body_end == '\0') ||
|
||||
if ((*body_end == '\0') ||
|
||||
(my_isspace(thd->variables.character_set_client, *body_end)))
|
||||
{ /* consume NULs and meaningless whitespace */
|
||||
--body.length;
|
||||
@ -186,7 +186,7 @@ Event_parse_data::init_body(THD *thd)
|
||||
consume closing comments
|
||||
|
||||
This is arguably wrong, but it's the best we have until the parser is
|
||||
changed to be smarter. FIXME PARSER
|
||||
changed to be smarter. FIXME PARSER
|
||||
|
||||
See also the sp_head code, where something like this is done also.
|
||||
|
||||
@ -296,7 +296,7 @@ Event_parse_data::init_execute_at(THD *thd)
|
||||
|
||||
if (item_execute_at->fix_fields(thd, &item_execute_at))
|
||||
goto wrong_value;
|
||||
|
||||
|
||||
/* no starts and/or ends in case of execute_at */
|
||||
DBUG_PRINT("info", ("starts_null && ends_null should be 1 is %d",
|
||||
(starts_null && ends_null)));
|
||||
@ -702,7 +702,7 @@ Event_basic::load_string_fields(Field **fields, ...)
|
||||
ret= TRUE;
|
||||
break;
|
||||
}
|
||||
field_value->length= strlen(field_value->str);
|
||||
field_value->length= strlen(field_value->str);
|
||||
|
||||
field_name= (enum enum_events_table_field) va_arg(args, int);
|
||||
}
|
||||
@ -778,7 +778,7 @@ Event_timed::Event_timed():
|
||||
*/
|
||||
|
||||
Event_timed::~Event_timed()
|
||||
{
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@ -1382,7 +1382,6 @@ Event_queue_element::compute_next_execution_time()
|
||||
DBUG_PRINT("info", ("Dropped: %d", dropped));
|
||||
status= Event_queue_element::DISABLED;
|
||||
status_changed= TRUE;
|
||||
dropped= TRUE;
|
||||
|
||||
goto ret;
|
||||
}
|
||||
@ -1574,7 +1573,7 @@ Event_queue_element::mark_last_executed(THD *thd)
|
||||
|
||||
last_executed= (my_time_t) thd->query_start();
|
||||
last_executed_changed= TRUE;
|
||||
|
||||
|
||||
execution_count++;
|
||||
}
|
||||
|
||||
@ -1762,7 +1761,7 @@ Event_timed::get_create_event(THD *thd, String *buf)
|
||||
*/
|
||||
|
||||
int
|
||||
Event_job_data::get_fake_create_event(THD *thd, String *buf)
|
||||
Event_job_data::get_fake_create_event(String *buf)
|
||||
{
|
||||
DBUG_ENTER("Event_job_data::get_create_event");
|
||||
/* FIXME: "EVERY 3337 HOUR" is asking for trouble. */
|
||||
@ -1853,7 +1852,7 @@ done:
|
||||
RETURN VALUE
|
||||
0 success
|
||||
EVEX_COMPILE_ERROR error during compilation
|
||||
EVEX_MICROSECOND_UNSUP mysql.event was tampered
|
||||
EVEX_MICROSECOND_UNSUP mysql.event was tampered
|
||||
*/
|
||||
|
||||
int
|
||||
@ -1878,7 +1877,7 @@ Event_job_data::compile(THD *thd, MEM_ROOT *mem_root)
|
||||
|
||||
show_create.length(0);
|
||||
|
||||
switch (get_fake_create_event(thd, &show_create)) {
|
||||
switch (get_fake_create_event(&show_create)) {
|
||||
case EVEX_MICROSECOND_UNSUP:
|
||||
DBUG_RETURN(EVEX_MICROSECOND_UNSUP);
|
||||
case 0:
|
||||
@ -2043,7 +2042,7 @@ event_change_security_context(THD *thd, LEX_STRING user, LEX_STRING host,
|
||||
thd->security_ctx= &thd->main_security_ctx;
|
||||
#endif
|
||||
DBUG_RETURN(FALSE);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user