Commit 524878e9 authored by monty@narttu.mysql.fi's avatar monty@narttu.mysql.fi

Fix for when compiling with HAVE_ISAM enabled

parent dad4025e
...@@ -29,6 +29,9 @@ ...@@ -29,6 +29,9 @@
#include "ha_innodb.h" #include "ha_innodb.h"
#endif #endif
#include "ha_myisam.h" #include "ha_myisam.h"
#ifdef HAVE_ISAM
#include "ha_isam.h"
#endif
#include <nisam.h> #include <nisam.h>
#include <thr_alarm.h> #include <thr_alarm.h>
#include <ft_global.h> #include <ft_global.h>
...@@ -5048,12 +5051,12 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)), ...@@ -5048,12 +5051,12 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
if (opt_isam) if (opt_isam)
{ {
isam_skip=0; isam_skip=0;
isam_innodb=SHOW_OPTION_YES; have_isam= SHOW_OPTION_YES;
} }
else else
{ {
isam_skip=1; isam_skip=1;
isam_innodb=SHOW_OPTION_DISABLED; have_isam= SHOW_OPTION_DISABLED;
} }
#endif #endif
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment