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
7297dbc7
Commit
7297dbc7
authored
Jan 14, 2003
by
arjen@george.bitbike.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Text fixes: ISAM -> MyISAM for myisamchk (found by Jocelyn Fournier).
parent
1b656d45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
myisam/myisamchk.c
myisam/myisamchk.c
+3
-3
No files found.
myisam/myisamchk.c
View file @
7297dbc7
...
...
@@ -129,7 +129,7 @@ int main(int argc, char **argv)
char
buff
[
22
],
buff2
[
22
];
if
(
!
(
check_param
.
testflag
&
T_SILENT
)
||
check_param
.
testflag
&
T_INFO
)
puts
(
"
\n
---------
\n
"
);
printf
(
"
\n
Total of all %d ISAM-files:
\n
Data records: %9s Deleted blocks: %9s
\n
"
,
check_param
.
total_files
,
llstr
(
check_param
.
total_records
,
buff
),
printf
(
"
\n
Total of all %d
My
ISAM-files:
\n
Data records: %9s Deleted blocks: %9s
\n
"
,
check_param
.
total_files
,
llstr
(
check_param
.
total_records
,
buff
),
llstr
(
check_param
.
total_deleted
,
buff2
));
}
free_defaults
(
default_argv
);
...
...
@@ -328,7 +328,7 @@ static void usage(void)
print_version
();
puts
(
"By Monty, for your professional use"
);
puts
(
"This software comes with NO WARRANTY: see the PUBLIC for details.
\n
"
);
puts
(
"Description, check and repair of ISAM tables."
);
puts
(
"Description, check and repair of
My
ISAM tables."
);
puts
(
"Used without options all tables on the command will be checked for errors"
);
printf
(
"Usage: %s [OPTIONS] tables[.MYI]
\n
"
,
my_progname
);
puts
(
"
\n
Global options:
\n
\
...
...
@@ -1674,7 +1674,7 @@ void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
if
(
!
param
->
warning_printed
&&
!
param
->
error_printed
)
{
if
(
param
->
testflag
&
T_SILENT
)
fprintf
(
stderr
,
"%s: ISAM file %s
\n
"
,
my_progname
,
param
->
isam_file_name
);
fprintf
(
stderr
,
"%s:
My
ISAM file %s
\n
"
,
my_progname
,
param
->
isam_file_name
);
param
->
out_flag
|=
O_DATA_LOST
;
}
param
->
error_printed
|=
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