mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix for LOAD DATA LOCAL INFILE patch
This commit is contained in:
@ -2294,9 +2294,9 @@ mysql_options(MYSQL *mysql,enum mysql_option option, const char *arg)
|
|||||||
break;
|
break;
|
||||||
case MYSQL_OPT_LOCAL_INFILE: /* Allow LOAD DATA LOCAL ?*/
|
case MYSQL_OPT_LOCAL_INFILE: /* Allow LOAD DATA LOCAL ?*/
|
||||||
if (!arg || test(*(uint*) arg))
|
if (!arg || test(*(uint*) arg))
|
||||||
mysql->client_flag|= CLIENT_LOCAL_FILES;
|
mysql->options.client_flag|= CLIENT_LOCAL_FILES;
|
||||||
else
|
else
|
||||||
mysql->client_flag&= ~CLIENT_LOCAL_FILES;
|
mysql->options.client_flag&= ~CLIENT_LOCAL_FILES;
|
||||||
break;
|
break;
|
||||||
case MYSQL_INIT_COMMAND:
|
case MYSQL_INIT_COMMAND:
|
||||||
my_free(mysql->options.init_command,MYF(MY_ALLOW_ZERO_PTR));
|
my_free(mysql->options.init_command,MYF(MY_ALLOW_ZERO_PTR));
|
||||||
|
@ -287,7 +287,7 @@ ulong bytes_sent = 0L, bytes_received = 0L;
|
|||||||
|
|
||||||
bool opt_endinfo,using_udf_functions,low_priority_updates, locked_in_memory;
|
bool opt_endinfo,using_udf_functions,low_priority_updates, locked_in_memory;
|
||||||
bool opt_using_transactions, using_update_log, opt_warnings=0;
|
bool opt_using_transactions, using_update_log, opt_warnings=0;
|
||||||
bool opt_local_infile;
|
bool opt_local_infile=1;
|
||||||
bool volatile abort_loop,select_thread_in_use,grant_option;
|
bool volatile abort_loop,select_thread_in_use,grant_option;
|
||||||
bool volatile ready_to_exit,shutdown_in_progress;
|
bool volatile ready_to_exit,shutdown_in_progress;
|
||||||
ulong refresh_version=1L,flush_version=1L; /* Increments on each reload */
|
ulong refresh_version=1L,flush_version=1L; /* Increments on each reload */
|
||||||
@ -3472,7 +3472,7 @@ static void get_options(int argc,char **argv)
|
|||||||
mysql_port= (unsigned int) atoi(optarg);
|
mysql_port= (unsigned int) atoi(optarg);
|
||||||
break;
|
break;
|
||||||
case OPT_LOCAL_INFILE:
|
case OPT_LOCAL_INFILE:
|
||||||
opt_local_infile= test(optarg || atoi(optarg) != 0);
|
opt_local_infile= test(!optarg || atoi(optarg) != 0);
|
||||||
break;
|
break;
|
||||||
case OPT_SLAVE_SKIP_ERRORS:
|
case OPT_SLAVE_SKIP_ERRORS:
|
||||||
init_slave_skip_errors(optarg);
|
init_slave_skip_errors(optarg);
|
||||||
|
Reference in New Issue
Block a user