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
a8c7affe
Commit
a8c7affe
authored
Feb 07, 2001
by
monty@donna.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added "--character-sets-dir" to myisampack
parent
059ad7f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Docs/manual.texi
Docs/manual.texi
+2
-0
myisam/myisampack.c
myisam/myisampack.c
+6
-1
No files found.
Docs/manual.texi
View file @
a8c7affe
...
...
@@ -41177,6 +41177,8 @@ not yet 100 % confident in this code.
@appendixsubsec Changes in release 3.23.33
@itemize bullet
@item
Added @code{--character-sets-dir} to @code{myisampack}.
@item
Removed warnings when running @code{REPAIR TABLE .. EXTENDED}.
@item
Fixed core-dump bug when using @code{GROUP BY} on an alias, where
myisam/myisampack.c
View file @
a8c7affe
...
...
@@ -229,10 +229,12 @@ int main(int argc, char **argv)
#endif
}
enum
options
{
OPT_CHARSETS_DIR
=
256
};
static
struct
option
long_options
[]
=
{
{
"backup"
,
no_argument
,
0
,
'b'
},
{
"character-sets-dir"
,
required_argument
,
0
,
OPT_CHARSETS_DIR
},
{
"debug"
,
optional_argument
,
0
,
'#'
},
{
"force"
,
no_argument
,
0
,
'f'
},
{
"join"
,
required_argument
,
0
,
'j'
},
...
...
@@ -249,7 +251,7 @@ static struct option long_options[] =
static
void
print_version
(
void
)
{
printf
(
"%s Ver 1.
8
for %s on %s
\n
"
,
my_progname
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
printf
(
"%s Ver 1.
9
for %s on %s
\n
"
,
my_progname
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
}
static
void
usage
(
void
)
...
...
@@ -332,6 +334,9 @@ static void get_options(int *argc,char ***argv)
case
'#'
:
DBUG_PUSH
(
optarg
?
optarg
:
"d:t:o"
);
break
;
case
OPT_CHARSETS_DIR
:
charsets_dir
=
optarg
;
break
;
case
'V'
:
print_version
();
exit
(
0
);
case
'I'
:
case
'?'
:
...
...
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