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
83ea6e4f
Commit
83ea6e4f
authored
Aug 08, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
as I disabled creation of the first empty bitmap at creation time,
I disable it too for repair time.
parent
ddac4525
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
storage/maria/ma_check.c
storage/maria/ma_check.c
+6
-0
No files found.
storage/maria/ma_check.c
View file @
83ea6e4f
...
@@ -2046,8 +2046,14 @@ int maria_repair(HA_CHECK *param, register MARIA_HA *info,
...
@@ -2046,8 +2046,14 @@ int maria_repair(HA_CHECK *param, register MARIA_HA *info,
goto
err
;
goto
err
;
}
}
_ma_reset_status
(
sort_info
.
new_info
);
_ma_reset_status
(
sort_info
.
new_info
);
#ifdef ASK_MONTY
/* cf maria_create() */
/*
without this call, a REPAIR on an empty table leaves the data file of
size 0, which sounds reasonable.
*/
if
(
_ma_initialize_data_file
(
sort_info
.
new_info
->
s
,
new_file
))
if
(
_ma_initialize_data_file
(
sort_info
.
new_info
->
s
,
new_file
))
goto
err
;
goto
err
;
#endif
block_record
=
1
;
block_record
=
1
;
}
}
}
}
...
...
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