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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
af07dcd3
Commit
af07dcd3
authored
Sep 01, 2006
by
andrey@example.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-merge fix
parent
366f0ca7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
sql/event_scheduler.cc
sql/event_scheduler.cc
+1
-1
sql/events.cc
sql/events.cc
+1
-3
No files found.
sql/event_scheduler.cc
View file @
af07dcd3
...
...
@@ -544,7 +544,7 @@ Event_scheduler::execute_top(THD *thd, Event_job_data *job_data)
/*
Check
e
s whether the state of the scheduler is RUNNING
Checks whether the state of the scheduler is RUNNING
SYNOPSIS
Event_scheduler::is_running()
...
...
sql/events.cc
View file @
af07dcd3
...
...
@@ -691,11 +691,9 @@ void
Events
::
deinit
()
{
DBUG_ENTER
(
"Events::deinit"
);
if
(
likely
(
!
check_system_tables_error
)
&&
scheduler
->
get_state
()
>
Event_scheduler
::
UNINITIALIZED
)
if
(
likely
(
!
check_system_tables_error
))
{
scheduler
->
stop
();
DBUG_ASSERT
(
scheduler
->
get_state
()
==
Event_scheduler
::
INITIALIZED
);
scheduler
->
deinit_scheduler
();
event_queue
->
deinit_queue
();
...
...
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