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
3ea4f67f
Commit
3ea4f67f
authored
Feb 17, 2006
by
brian@zim.tangent.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing support for storage engines being loadable, will push featureto 5.2.
parent
fd2b90d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
sql/sql_plugin.cc
sql/sql_plugin.cc
+2
-9
No files found.
sql/sql_plugin.cc
View file @
3ea4f67f
...
@@ -517,15 +517,8 @@ static int plugin_initialize(struct st_plugin_int *plugin)
...
@@ -517,15 +517,8 @@ static int plugin_initialize(struct st_plugin_int *plugin)
switch
(
plugin
->
plugin
->
type
)
switch
(
plugin
->
plugin
->
type
)
{
{
case
MYSQL_STORAGE_ENGINE_PLUGIN
:
case
MYSQL_STORAGE_ENGINE_PLUGIN
:
if
(
ha_initialize_handlerton
((
handlerton
*
)
plugin
->
plugin
->
info
))
sql_print_error
(
"Storage Engine plugins are unsupported in this version."
);
{
goto
err
;
sql_print_error
(
"Plugin '%s' handlerton init returned error."
,
plugin
->
name
.
str
);
DBUG_PRINT
(
"warning"
,
(
"Plugin '%s' handlerton init returned error."
,
plugin
->
name
.
str
))
goto
err
;
}
break
;
default:
default:
break
;
break
;
}
}
...
...
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