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
850ac2e8
Commit
850ac2e8
authored
Sep 14, 2006
by
andrey@example.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Temporary fix for a deadlock. Needed so we can go with cloning
5.1.12.
parent
895a4442
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
sql/event_queue.cc
sql/event_queue.cc
+13
-5
No files found.
sql/event_queue.cc
View file @
850ac2e8
...
...
@@ -707,6 +707,9 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
bool
ret
=
FALSE
;
struct
timespec
top_time
;
struct
timespec
*
abstime
;
Event_queue_element
*
top
=
NULL
;
bool
to_free
=
FALSE
;
bool
to_drop
=
FALSE
;
*
job_data
=
NULL
;
DBUG_ENTER
(
"Event_queue::get_top_for_execution_if_time"
);
...
...
@@ -715,7 +718,6 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
for
(;;)
{
int
res
;
Event_queue_element
*
top
=
NULL
;
thd
->
end_time
();
time_t
now
=
thd
->
query_start
();
...
...
@@ -788,9 +790,8 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
sql_print_information
(
"SCHEDULER: Last execution of %s.%s. %s"
,
top
->
dbname
.
str
,
top
->
name
.
str
,
top
->
dropped
?
"Dropping."
:
""
);
if
(
top
->
dropped
)
top
->
drop
(
thd
);
delete
top
;
to_free
=
TRUE
;
to_drop
=
top
->
dropped
;
queue_remove
(
&
queue
,
0
);
}
else
...
...
@@ -801,7 +802,14 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
}
end:
UNLOCK_QUEUE_DATA
();
if
(
to_drop
)
{
DBUG_PRINT
(
"info"
,
(
"Dropping from disk"
));
top
->
drop
(
thd
);
}
if
(
to_free
)
delete
top
;
DBUG_PRINT
(
"info"
,
(
"returning %d. et_new=0x%lx abstime.tv_sec=%d "
,
ret
,
*
job_data
,
abstime
?
abstime
->
tv_sec
:
0
));
...
...
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