diff options
author | magnus@neptunus.(none) <> | 2004-04-15 09:14:14 +0200 |
---|---|---|
committer | magnus@neptunus.(none) <> | 2004-04-15 09:14:14 +0200 |
commit | 7c2c408cb8f519cc57916809525d425939bc2b5a (patch) | |
tree | e8f88e89d865e1db6c1ca7d6c5fa4d85a090de4c /sql/set_var.cc | |
parent | ec9e88ba1dddb0de00d06b6eae084f1131a884ee (diff) | |
download | mariadb-git-7c2c408cb8f519cc57916809525d425939bc2b5a.tar.gz |
Added NDB storage engine
Diffstat (limited to 'sql/set_var.cc')
-rw-r--r-- | sql/set_var.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/set_var.cc b/sql/set_var.cc index 5ccda5c7052..0cf4d2d2691 100644 --- a/sql/set_var.cc +++ b/sql/set_var.cc @@ -59,6 +59,9 @@ #ifdef HAVE_INNOBASE_DB #include "ha_innodb.h" #endif +#ifdef HAVE_NDBCLUSTER_DB +#include "ha_ndbcluster.h" +#endif static HASH system_variable_hash; const char *bool_type_names[]= { "OFF", "ON", NullS }; @@ -638,6 +641,7 @@ struct show_var_st init_vars[]= { {"have_crypt", (char*) &have_crypt, SHOW_HAVE}, {"have_innodb", (char*) &have_innodb, SHOW_HAVE}, {"have_isam", (char*) &have_isam, SHOW_HAVE}, + {"have_ndbcluster", (char*) &have_ndbcluster, SHOW_HAVE}, {"have_openssl", (char*) &have_openssl, SHOW_HAVE}, {"have_query_cache", (char*) &have_query_cache, SHOW_HAVE}, {"have_raid", (char*) &have_raid, SHOW_HAVE}, |