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
24e6b1b5
Commit
24e6b1b5
authored
Jun 30, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-merge fix
myisam/myisamchk.c: typo fixed
parent
85edab84
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
myisam/mi_check.c
myisam/mi_check.c
+2
-2
myisam/myisamchk.c
myisam/myisamchk.c
+1
-1
mysys/mf_iocache.c
mysys/mf_iocache.c
+0
-1
No files found.
myisam/mi_check.c
View file @
24e6b1b5
...
...
@@ -2109,7 +2109,7 @@ err:
DESCRIPTION
Same as mi_repair_by_sort but do it multithreaded
Each key is handled by a separate thread.
TODO: make a number of thread a parameter
TODO: make a number of thread
s
a parameter
RESULT
0 ok
...
...
@@ -2358,7 +2358,7 @@ int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
}
got_error
=
1
;
/* Assume the following may go wrong */
if
(
sort_param
->
fix_datafile
)
if
(
sort_param
[
0
].
fix_datafile
)
{
if
(
write_data_suffix
(
&
sort_info
,
1
)
||
end_io_cache
(
&
info
->
rec_cache
))
goto
err
;
...
...
myisam/myisamchk.c
View file @
24e6b1b5
...
...
@@ -219,7 +219,7 @@ static struct my_option my_long_options[] =
{
"recover"
,
'r'
,
"Can fix almost anything except unique keys that aren't unique."
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"paralle
r
-recover"
,
'p'
,
{
"paralle
l
-recover"
,
'p'
,
"Same as '-r' but creates all the keys in parallel"
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"safe-recover"
,
'o'
,
...
...
mysys/mf_iocache.c
View file @
24e6b1b5
...
...
@@ -508,7 +508,6 @@ int _my_b_read_r(register IO_CACHE *info, byte *Buffer, uint Count)
pos_in_file
=
info
->
pos_in_file
+
(
uint
)(
info
->
read_end
-
info
->
buffer
);
diff_length
=
(
uint
)
(
pos_in_file
&
(
IO_SIZE
-
1
));
length
=
IO_ROUND_UP
(
Count
+
diff_length
)
-
diff_length
;
length
=
IO_ROUND_UP
(
Count
+
diff_length
)
-
diff_length
;
length
=
(
length
<=
info
->
read_length
)
?
length
+
IO_ROUND_DN
(
info
->
read_length
-
length
)
:
length
-
IO_ROUND_UP
(
length
-
info
->
read_length
)
;
...
...
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