mirror of
https://github.com/MariaDB/server.git
synced 2025-07-16 00:42:55 +03:00
Enable LOAD DATA LOCAL by default
This commit is contained in:
@ -8,6 +8,6 @@ c_warnings="$c_warnings $debug_extra_warnings"
|
||||
cxx_warnings="$cxx_warnings $debug_extra_warnings"
|
||||
extra_configs="$pentium_configs $debug_configs"
|
||||
|
||||
extra_configs="$extra_configs --with-berkeley-db --with-innodb"
|
||||
extra_configs="$extra_configs --with-berkeley-db --with-innodb --enable-local-infile"
|
||||
|
||||
. "$path/FINISH.sh"
|
||||
|
@ -64,6 +64,7 @@ aclocal; autoheader; aclocal; automake; autoconf
|
||||
--with-mit-threads=yes $EXTRA_CONFIG \
|
||||
--enable-thread-safe-client \
|
||||
--with-berkeley-db \
|
||||
--enable-local-infile \
|
||||
--with-innodb
|
||||
|
||||
gmake -j 2
|
||||
|
@ -159,7 +159,7 @@ if ($opt_stage <= 1)
|
||||
{
|
||||
$opt_config_options.= " --with-innodb"
|
||||
}
|
||||
check_system("$opt_config_env ./configure --prefix=/usr/local/mysql \"--with-comment=Official MySQL$opt_version_suffix binary\" --with-extra-charsets=complex \"--with-server-suffix=$opt_version_suffix\" --enable-thread-safe-client $opt_config_options","Thank you for choosing MySQL");
|
||||
check_system("$opt_config_env ./configure --prefix=/usr/local/mysql \"--with-comment=Official MySQL$opt_version_suffix binary\" --with-extra-charsets=complex \"--with-server-suffix=$opt_version_suffix\" --enable-thread-safe-client --enable-local-infile $opt_config_options","Thank you for choosing MySQL");
|
||||
if (-d "$pwd/$host/include-mysql")
|
||||
{
|
||||
safe_system("cp -r $pwd/$host/include-mysql/* $pwd/$host/$ver/include");
|
||||
|
@ -160,6 +160,7 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-/bin:/usr/bin}\" \
|
||||
./configure \
|
||||
$* \
|
||||
--enable-assembler \
|
||||
--enable-local-infile \
|
||||
--with-mysqld-user=%{mysqld_user} \
|
||||
--with-unix-socket-path=/var/lib/mysql/mysql.sock \
|
||||
--prefix=/ \
|
||||
|
Reference in New Issue
Block a user