summaryrefslogtreecommitdiff
path: root/sql/mysqld.cc
diff options
context:
space:
mode:
authorunknown <brian@zim.tangent.org>2006-02-11 17:21:01 -0800
committerunknown <brian@zim.tangent.org>2006-02-11 17:21:01 -0800
commit88aa9b13102aa2d2676128b66caf532720cb8e8a (patch)
tree8069e98b4aaa0d9c03ec34489469209399a885eb /sql/mysqld.cc
parent0dc95fd02384b8e022953d3a66a025f016914eec (diff)
downloadmariadb-git-88aa9b13102aa2d2676128b66caf532720cb8e8a.tar.gz
This patch is to further remove the RAID code. We removed support for people creating tables with RAID. This patch remove most of the source for this.
sql/ha_myisam.cc: Remove RAID code sql/ha_partition.cc: Remove RAID code. sql/handler.h: Remove RAID code sql/lex.h: Remove RAID code. sql/mysqld.cc: Remove RAID code. sql/set_var.cc: Remove RAID code. sql/sql_show.cc: Remove RAID code sql/sql_yacc.yy: Remove more of the RAID code sql/table.cc: Remove RAID code.
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r--sql/mysqld.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 953d0847c4d..abf03ef9a95 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -563,7 +563,7 @@ CHARSET_INFO *system_charset_info, *files_charset_info ;
CHARSET_INFO *national_charset_info, *table_alias_charset;
SHOW_COMP_OPTION have_row_based_replication;
-SHOW_COMP_OPTION have_raid, have_openssl, have_symlink, have_query_cache;
+SHOW_COMP_OPTION have_openssl, have_symlink, have_query_cache;
SHOW_COMP_OPTION have_geometry, have_rtree_keys;
SHOW_COMP_OPTION have_crypt, have_compress;
@@ -1179,9 +1179,6 @@ void clean_up(bool print_message)
multi_keycache_free();
free_status_vars();
end_thr_alarm(1); /* Free allocated memory */
-#ifdef USE_RAID
- end_raid();
-#endif
my_free_open_file_info();
my_free((char*) global_system_variables.date_format,
MYF(MY_ALLOW_ZERO_PTR));
@@ -7011,11 +7008,6 @@ static void mysql_init_variables(void)
#else
have_ndbcluster=SHOW_OPTION_NO;
#endif
-#ifdef USE_RAID
- have_raid=SHOW_OPTION_YES;
-#else
- have_raid=SHOW_OPTION_NO;
-#endif
#ifdef HAVE_OPENSSL
have_openssl=SHOW_OPTION_YES;
#else