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
8773f146
Commit
8773f146
authored
May 08, 2017
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable defragmentation support for now.
parent
f0eb8f15
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+2
-1
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
8773f146
...
@@ -15295,7 +15295,8 @@ ha_innobase::optimize(
...
@@ -15295,7 +15295,8 @@ ha_innobase::optimize(
This works OK otherwise, but MySQL locks the entire table during
This works OK otherwise, but MySQL locks the entire table during
calls to OPTIMIZE, which is undesirable. */
calls to OPTIMIZE, which is undesirable. */
if
(
srv_defragment
)
{
/* TODO: Defragment is disabled for now */
if
(
0
)
{
int
err
;
int
err
;
err
=
defragment_table
(
m_prebuilt
->
table
->
name
.
m_name
,
NULL
,
false
);
err
=
defragment_table
(
m_prebuilt
->
table
->
name
.
m_name
,
NULL
,
false
);
...
...
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