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
0b6e146c
Commit
0b6e146c
authored
Oct 11, 2006
by
brian@zim.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.1
into zim.(none):/home/brian/mysql/merge-5.1
parents
2af5c98d
5c4a6807
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
29 deletions
+3
-29
sql/handler.cc
sql/handler.cc
+3
-28
sql/mysqld.cc
sql/mysqld.cc
+0
-1
No files found.
sql/handler.cc
View file @
0b6e146c
...
...
@@ -376,11 +376,12 @@ int ha_finalize_handlerton(st_plugin_int *plugin)
case
SHOW_OPTION_YES
:
if
(
installed_htons
[
hton
->
db_type
]
==
hton
)
installed_htons
[
hton
->
db_type
]
=
NULL
;
if
(
hton
->
panic
&&
hton
->
panic
(
hton
,
HA_PANIC_CLOSE
))
DBUG_RETURN
(
1
);
break
;
};
if
(
hton
->
panic
)
hton
->
panic
(
hton
,
HA_PANIC_CLOSE
);
if
(
plugin
->
plugin
->
deinit
)
{
/*
...
...
@@ -509,32 +510,6 @@ int ha_init()
DBUG_RETURN
(
error
);
}
/*
close, flush or restart databases
Ignore this for other databases than ours
*/
static
my_bool
panic_handlerton
(
THD
*
unused1
,
st_plugin_int
*
plugin
,
void
*
arg
)
{
handlerton
*
hton
=
(
handlerton
*
)
plugin
->
data
;
if
(
hton
->
state
==
SHOW_OPTION_YES
&&
hton
->
panic
)
((
int
*
)
arg
)[
0
]
|=
hton
->
panic
(
hton
,
(
enum
ha_panic_function
)((
int
*
)
arg
)[
1
]);
return
FALSE
;
}
int
ha_panic
(
enum
ha_panic_function
flag
)
{
int
error
[
2
];
error
[
0
]
=
0
;
error
[
1
]
=
(
int
)
flag
;
plugin_foreach
(
NULL
,
panic_handlerton
,
MYSQL_STORAGE_ENGINE_PLUGIN
,
error
);
if
(
flag
==
HA_PANIC_CLOSE
&&
ha_finish_errors
())
error
[
0
]
=
1
;
return
error
[
0
];
}
/* ha_panic */
static
my_bool
dropdb_handlerton
(
THD
*
unused1
,
st_plugin_int
*
plugin
,
void
*
path
)
{
...
...
sql/mysqld.cc
View file @
0b6e146c
...
...
@@ -1186,7 +1186,6 @@ void clean_up(bool print_message)
lex_free
();
/* Free some memory */
set_var_free
();
free_charsets
();
(
void
)
ha_panic
(
HA_PANIC_CLOSE
);
/* close all tables and logs */
if
(
!
opt_noacl
)
{
#ifdef HAVE_DLOPEN
...
...
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