1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Moved have_* to mysql_priv.h.

mysql_priv.h:
  Added have_berkeley_db and have_innodb.
ha_innodb.h:
  Removed have_innodb.
ha_berkeley.h:
  Removed have_berkeley_db.


sql/ha_berkeley.h:
  Removed have_berkeley_db.
sql/ha_innodb.h:
  Removed have_innodb.
sql/mysql_priv.h:
  Added have_berkeley_db and have_innodb.
This commit is contained in:
unknown
2002-07-25 00:12:42 -05:00
parent cbef80af1d
commit 20af76aa7c
3 changed files with 4 additions and 3 deletions

View File

@ -659,7 +659,10 @@ extern SHOW_VAR init_vars[],status_vars[], internal_vars[];
extern struct system_variables global_system_variables;
extern struct system_variables max_system_variables;
extern SHOW_COMP_OPTION have_isam, have_raid, have_openssl, have_symlink;
/* optional things, have_* variables */
extern SHOW_COMP_OPTION have_isam, have_innodb, have_berkeley_db;
extern SHOW_COMP_OPTION have_raid, have_openssl, have_symlink;
extern SHOW_COMP_OPTION have_query_cache;
#ifndef __WIN__