mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
Force mysqlbinlog to require an argument if --local-load is used
(--local-load alone means "I want files to be prepared for LOAD DATA INFILE, in the default temp directory", and mysqlbinlog already does this without --local-load).
This commit is contained in:
parent
69517b22a1
commit
c421527dee
1 changed files with 3 additions and 3 deletions
|
@ -438,9 +438,9 @@ static struct my_option my_long_options[] =
|
|||
{"user", 'u', "Connect to the remote server as username.",
|
||||
(gptr*) &user, (gptr*) &user, 0, GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0,
|
||||
0, 0},
|
||||
{"local-load", 'l', "Prepare files for local load in directory.",
|
||||
{"local-load", 'l', "Prepare local temporary files for LOAD DATA INFILE in the specified directory.",
|
||||
(gptr*) &dirname_for_local_load, (gptr*) &dirname_for_local_load, 0,
|
||||
GET_STR_ALLOC, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
||||
GET_STR_ALLOC, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||
{"version", 'V', "Print version and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0,
|
||||
0, 0, 0, 0, 0},
|
||||
{0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
|
||||
|
@ -947,7 +947,7 @@ int main(int argc, char** argv)
|
|||
exit(1);
|
||||
if (dirname_for_local_load)
|
||||
load_processor.init_by_dir_name(dirname_for_local_load);
|
||||
else
|
||||
else /* my_malloc() failed in my_strdup() */
|
||||
load_processor.init_by_cur_dir();
|
||||
|
||||
exit_value= 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue