Skip to content
Snippets Groups Projects
Commit ca0027b9 authored by Danny Auble's avatar Danny Auble
Browse files

Merge remote-tracking branch 'origin/slurm-15.08'

# Conflicts:
#	auxdir/x_ac_databases.m4
#	configure
parents e7c10e27 2fd4d7a6
No related branches found
No related tags found
No related merge requests found
...@@ -240,6 +240,7 @@ documents those changes that are of interest to users and administrators. ...@@ -240,6 +240,7 @@ documents those changes that are of interest to users and administrators.
-- Better initialization of node_ptr when dealing with protocol_version. -- Better initialization of node_ptr when dealing with protocol_version.
-- Fix incorrect type when initializing header of a message. -- Fix incorrect type when initializing header of a message.
-- MYSQL - Fix incorrect usage of limit and union. -- MYSQL - Fix incorrect usage of limit and union.
-- MYSQL - Remove 'ignore' from alter ignore when updating a table.
* Changes in Slurm 15.08.10 * Changes in Slurm 15.08.10
=========================== ===========================
......
...@@ -42,7 +42,6 @@ AC_DEFUN([X_AC_DATABASES], ...@@ -42,7 +42,6 @@ AC_DEFUN([X_AC_DATABASES],
AC_MSG_WARN([*** mysql-$mysql_config_major_version.$mysql_config_minor_version.$mysql_config_micro_version available, we need >= mysql-5.0.0 installed for the mysql interface.]) AC_MSG_WARN([*** mysql-$mysql_config_major_version.$mysql_config_minor_version.$mysql_config_micro_version available, we need >= mysql-5.0.0 installed for the mysql interface.])
ac_have_mysql="no" ac_have_mysql="no"
else else
# In mysql 5.7.4 we can't use the 'IGNORE' option when # In mysql 5.7.4 we can't use the 'IGNORE' option when
# altering tables so deal with it then. # altering tables so deal with it then.
if test $mysql_config_major_version -ge 6 || if test $mysql_config_major_version -ge 6 ||
......
...@@ -215,6 +215,10 @@ ...@@ -215,6 +215,10 @@
/* Define to 1 if using MySQL libaries */ /* Define to 1 if using MySQL libaries */
#undef HAVE_MYSQL #undef HAVE_MYSQL
/* Define to 1 if we can't use the alter ignore when messing with a database
* table */
#undef NO_ALTER_IGNORE_MYSQL
/* Define to 1 for running on a Cray in native mode without ALPS */ /* Define to 1 for running on a Cray in native mode without ALPS */
#undef HAVE_NATIVE_CRAY #undef HAVE_NATIVE_CRAY
......
...@@ -23240,7 +23240,6 @@ $as_echo "$as_me: WARNING: *** mysql_config not found. Evidently no MySQL develo ...@@ -23240,7 +23240,6 @@ $as_echo "$as_me: WARNING: *** mysql_config not found. Evidently no MySQL develo
$as_echo "$as_me: WARNING: *** mysql-$mysql_config_major_version.$mysql_config_minor_version.$mysql_config_micro_version available, we need >= mysql-5.0.0 installed for the mysql interface." >&2;} $as_echo "$as_me: WARNING: *** mysql-$mysql_config_major_version.$mysql_config_minor_version.$mysql_config_micro_version available, we need >= mysql-5.0.0 installed for the mysql interface." >&2;}
ac_have_mysql="no" ac_have_mysql="no"
else else
# In mysql 5.7.4 we can't use the 'IGNORE' option when # In mysql 5.7.4 we can't use the 'IGNORE' option when
# altering tables so deal with it then. # altering tables so deal with it then.
if test $mysql_config_major_version -ge 6 || if test $mysql_config_major_version -ge 6 ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment