Commit 089547f4 authored by unknown's avatar unknown
Browse files

Bug#21855 Compilation error in ha_innodb.cc

 - Add ifdefs in ha_innodb.cc so it's only compiled if we have selected to build mysqld with innodb.
   This is inline with how it's done in other handlers.


sql/ha_innodb.cc:
  Add ifdef for WITH_INNOBASE_STORAGE_ENGINE around all code in ha_innodb.cc so it's only included if we have defined --with-innodb to configure
parent 0fbd2158
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@ have disables the InnoDB inlining in this file. */
#endif

#include "mysql_priv.h"
#ifdef WITH_INNOBASE_STORAGE_ENGINE

#include "slave.h"

#include <m_ctype.h>
@@ -7622,3 +7624,4 @@ mysql_declare_plugin(innobase)
}
mysql_declare_plugin_end;

#endif