Skip to content
Permalink
Browse files
compilation failures
with -DPLUGIN_PARTITION=NO and -DPLUGIN_PERFSCHEMA=NO
  • Loading branch information
vuvova committed Jul 5, 2017
1 parent 291411c commit 51d457f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
@@ -79,6 +79,10 @@
#include "sql_callback.h"
#include "threadpool.h"

#ifdef HAVE_OPENSSL
#include <ssl_compat.h>
#endif

#ifdef WITH_PERFSCHEMA_STORAGE_ENGINE
#include "../storage/perfschema/pfs_server.h"
#endif /* WITH_PERFSCHEMA_STORAGE_ENGINE */
@@ -338,13 +342,9 @@ static PSI_thread_key key_thread_handle_con_sockets;
static PSI_thread_key key_thread_handle_shutdown;
#endif /* __WIN__ */

#ifdef HAVE_OPENSSL
#include <ssl_compat.h>

#ifdef HAVE_OPENSSL10
static PSI_rwlock_key key_rwlock_openssl;
#endif
#endif
#endif /* HAVE_PSI_INTERFACE */

#ifdef HAVE_NPTL
@@ -764,8 +764,8 @@ ha_innobase::check_if_supported_inplace_alter(
| Alter_inplace_info::DROP_INDEX);

if (flags != 0
|| (altered_table->s->partition_info_str
&& altered_table->s->partition_info_str_len)
|| IF_PARTITIONING((altered_table->s->partition_info_str
&& altered_table->s->partition_info_str_len), 0)
|| (!check_v_col_in_order(
this->table, altered_table, ha_alter_info))) {
ha_alter_info->unsupported_reason =

0 comments on commit 51d457f

Please sign in to comment.