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
9bc030f6
Commit
9bc030f6
authored
Aug 05, 2002
by
jani@hynda.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fixes in mysql and myisamchk.
parent
65c09008
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
client/mysql.cc
client/mysql.cc
+4
-2
myisam/myisamchk.c
myisam/myisamchk.c
+2
-2
No files found.
client/mysql.cc
View file @
9bc030f6
...
...
@@ -40,7 +40,7 @@
#include <signal.h>
#include <violite.h>
const
char
*
VER
=
"12.1
1
"
;
const
char
*
VER
=
"12.1
2
"
;
/* Don't try to make a nice table if the data is too big */
#define MAX_COLUMN_LENGTH 1024
...
...
@@ -1319,7 +1319,9 @@ com_help (String *buffer __attribute__((unused)),
{
reg1
int
i
;
put_info
(
"
\n
MySQL commands:"
,
INFO_INFO
);
put_info
(
"
\n
Full documentation of MySQL is available at
\n
http://www.mysql.com/documentation/mysql/bychapter/
\n
"
,
INFO_INFO
);
put_info
(
"For technical support contracts, visit https://order.mysql.com/
\n
"
,
INFO_INFO
);
put_info
(
"MySQL commands:"
,
INFO_INFO
);
if
(
!
named_cmds
)
put_info
(
"Note that all text commands must be first on line and end with ';'"
,
INFO_INFO
);
for
(
i
=
0
;
commands
[
i
].
name
;
i
++
)
...
...
myisam/myisamchk.c
View file @
9bc030f6
...
...
@@ -209,7 +209,7 @@ static struct my_option my_long_options[] =
(
gptr
*
)
&
check_param
.
keys_in_use
,
0
,
GET_ULL
,
REQUIRED_ARG
,
-
1
,
0
,
0
,
0
,
0
,
0
},
{
"medium-check"
,
'm'
,
"Faster than extend
ed
-check, but only finds 99.99% of all errors. Should be good enough for most cases."
,
"Faster than extend-check, but only finds 99.99% of all errors. Should be good enough for most cases."
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
{
"quick"
,
'q'
,
"Faster repair by not modifying the data file."
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
...
...
@@ -360,7 +360,7 @@ static void usage(void)
-f, --force Restart with '-r' if there are any errors in the table.
\n
\
States will be updated as with '--update-state'
\n
\
-i, --information Print statistics information about table that is checked
\n
\
-m, --medium-check Faster than extend
ed
-check, but only finds 99.99% of
\n
\
-m, --medium-check Faster than extend-check, but only finds 99.99% of
\n
\
all errors. Should be good enough for most cases
\n
\
-U --update-state Mark tables as crashed if you find any errors
\n
\
-T, --read-only Don't mark table as checked
\n
"
);
...
...
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