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.
This commit is contained in:
msvensson@shellback.(none) 2006-09-08 15:42:49 +02:00
parent 1ac47c9513
commit 5ac62fd1d6

View file

@ -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