summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <mydev@mysql.com>2004-03-04 22:53:48 +0100
committerunknown <mydev@mysql.com>2004-03-04 22:53:48 +0100
commit1561e545ebd8adedfd1c706c370f485b0a938c6c (patch)
tree587cee3fc1f964f351850f960ee0cf87ad003ee5 /sql
parentf7207b51a2f8bfa4ee1a4a9c424020bad8fd51bd (diff)
downloadmariadb-git-1561e545ebd8adedfd1c706c370f485b0a938c6c.tar.gz
Fixed a type mismatch between int_table_flags and table_flags() in MyISAM handler.
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql')
-rw-r--r--sql/ha_myisam.h2
1 files changed, 1 insertions, 1 deletions
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 &param, bool optimize);