From 1561e545ebd8adedfd1c706c370f485b0a938c6c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 4 Mar 2004 22:53:48 +0100 Subject: [PATCH] Fixed a type mismatch between int_table_flags and table_flags() in MyISAM handler. BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted --- BitKeeper/etc/logging_ok | 1 + sql/ha_myisam.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index ec7ca6d992d..03d7a4fdfe5 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -95,6 +95,7 @@ monty@work.mysql.com mwagner@cash.mwagner.org mwagner@evoq.mwagner.org mwagner@work.mysql.com +mydev@mysql.com mysql@home.(none) mysqldev@build.mysql2.com nick@mysql.com diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index ddffcfecc29..4d66639690d 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -37,7 +37,7 @@ extern ulong myisam_recover_options; class ha_myisam: public handler { MI_INFO *file; - uint int_table_flags; + ulong int_table_flags; char *data_file_name, *index_file_name; bool enable_activate_all_index; int repair(THD *thd, MI_CHECK ¶m, bool optimize);