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
88d29f5c
Commit
88d29f5c
authored
Apr 17, 2012
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update @@have_innodb variable when innodb plugin is uninstalled
parent
2c42bd22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
sql/sql_plugin.cc
sql/sql_plugin.cc
+4
-0
No files found.
sql/sql_plugin.cc
View file @
88d29f5c
...
@@ -1179,6 +1179,10 @@ static void plugin_deinitialize(struct st_plugin_int *plugin, bool ref_check)
...
@@ -1179,6 +1179,10 @@ static void plugin_deinitialize(struct st_plugin_int *plugin, bool ref_check)
}
}
plugin
->
state
=
PLUGIN_IS_UNINITIALIZED
;
plugin
->
state
=
PLUGIN_IS_UNINITIALIZED
;
/* maintain the obsolete @@have_innodb variable */
if
(
!
my_strcasecmp
(
&
my_charset_latin1
,
plugin
->
name
.
str
,
"InnoDB"
))
have_innodb
=
SHOW_OPTION_DISABLED
;
/*
/*
We do the check here because NDB has a worker THD which doesn't
We do the check here because NDB has a worker THD which doesn't
exit until NDB is shut down.
exit until NDB is shut down.
...
...
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