Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c10865e9
Commit
c10865e9
authored
Apr 21, 2006
by
andrey@lmy004
Browse files
Options
Browse Files
Download
Plain Diff
Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into lmy004.:/work/mysql-5.1-new-clean
parents
5ec05822
48027b2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
14 deletions
+17
-14
sql/event_timed.cc
sql/event_timed.cc
+17
-14
No files found.
sql/event_timed.cc
View file @
c10865e9
...
...
@@ -731,7 +731,9 @@ bool get_next_time(TIME *next, TIME *start, TIME *time_now, TIME *last_exec,
get the next exec if the modulus is not
*/
DBUG_PRINT
(
"info"
,
(
"multiplier=%d"
,
multiplier
));
if
(
seconds_diff
%
seconds
||
(
!
seconds_diff
&&
last_exec
->
year
))
if
(
seconds_diff
%
seconds
||
(
!
seconds_diff
&&
last_exec
->
year
)
||
TIME_to_ulonglong_datetime
(
time_now
)
==
TIME_to_ulonglong_datetime
(
last_exec
))
++
multiplier
;
interval
.
second
=
seconds
*
multiplier
;
DBUG_PRINT
(
"info"
,
(
"multiplier=%u interval.second=%u"
,
multiplier
,
...
...
@@ -893,16 +895,15 @@ Event_timed::compute_next_execution_time()
DBUG_PRINT
(
"info"
,
(
"Both STARTS & ENDS are set"
));
if
(
!
last_executed
.
year
)
{
DBUG_PRINT
(
"info"
,
(
"Not executed so far. Execute NOW."
));
execute_at
=
time_now
;
execute_at_null
=
FALSE
;
DBUG_PRINT
(
"info"
,
(
"Not executed so far."
));
}
else
{
TIME
next_exec
;
DBUG_PRINT
(
"info"
,
(
"Executed at least once"
));
if
(
get_next_time
(
&
next_exec
,
&
starts
,
&
time_now
,
&
last_executed
,
if
(
get_next_time
(
&
next_exec
,
&
starts
,
&
time_now
,
last_executed
.
year
?
&
last_executed
:&
starts
,
expression
,
interval
))
goto
err
;
...
...
@@ -925,8 +926,9 @@ Event_timed::compute_next_execution_time()
}
goto
ret
;
}
else
if
(
starts_null
&&
ends_null
)
else
if
(
starts_null
&&
ends_null
)
{
/* starts is always set, so this is a dead branch !! */
DBUG_PRINT
(
"info"
,
(
"Neither STARTS nor ENDS are set"
));
/*
Both starts and m_ends are not set, so we schedule for the next
...
...
@@ -961,25 +963,26 @@ Event_timed::compute_next_execution_time()
Hence schedule for starts + m_expression in case last_executed
is not set, otherwise to last_executed + m_expression
*/
if
(
last_executed
.
year
)
if
(
!
last_executed
.
year
)
{
DBUG_PRINT
(
"info"
,
(
"Not executed so far."
));
}
{
TIME
next_exec
;
DBUG_PRINT
(
"info"
,
(
"Executed at least once."
));
if
(
get_next_time
(
&
next_exec
,
&
starts
,
&
time_now
,
&
last_executed
,
if
(
get_next_time
(
&
next_exec
,
&
starts
,
&
time_now
,
last_executed
.
year
?
&
last_executed
:&
starts
,
expression
,
interval
))
goto
err
;
execute_at
=
next_exec
;
DBUG_PRINT
(
"info"
,(
"Next[%llu]"
,
TIME_to_ulonglong_datetime
(
&
next_exec
)));
}
else
{
DBUG_PRINT
(
"info"
,
(
"Not executed so far. Execute at STARTS"
));
execute_at
=
starts
;
}
execute_at_null
=
FALSE
;
}
else
{
/* this is a dead branch, because starts is always set !!! */
DBUG_PRINT
(
"info"
,
(
"STARTS is not set. ENDS is set"
));
/*
- m_ends is set
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment