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
6f19b5fa
Commit
6f19b5fa
authored
Sep 04, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrong test for -q/-qq (T_QUICK/T_FORCE_UNIQUENESS) in myisamchk corrected
parent
8c8c2a7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
myisam/mi_check.c
myisam/mi_check.c
+2
-2
No files found.
myisam/mi_check.c
View file @
6f19b5fa
...
...
@@ -1238,7 +1238,7 @@ int mi_repair(MI_CHECK *param, register MI_INFO *info,
USE_WHOLE_KEY
);
}
sort_info
.
dupp
++
;
if
(
!
(
rep_quick
&
T_FORCE_UNIQUENESS
)
)
if
(
(
param
->
testflag
&
(
T_FORCE_UNIQUENESS
|
T_QUICK
))
==
T_QUICK
)
{
param
->
testflag
|=
T_RETRY_WITHOUT_QUICK
;
param
->
error_printed
=
1
;
...
...
@@ -3210,7 +3210,7 @@ static int sort_delete_record(MI_SORT_PARAM *sort_param)
MI_INFO
*
info
=
sort_info
->
info
;
DBUG_ENTER
(
"sort_delete_record"
);
if
(
!
(
param
->
testflag
&
T_FORCE_UNIQUENESS
)
)
if
(
(
param
->
testflag
&
(
T_FORCE_UNIQUENESS
|
T_QUICK
))
==
T_QUICK
)
{
mi_check_print_error
(
param
,
"Quick-recover aborted; Run recovery without switch -q or with switch -qq"
);
...
...
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