diff options
author | unknown <mydev@mysql.com> | 2004-03-04 22:53:48 +0100 |
---|---|---|
committer | unknown <mydev@mysql.com> | 2004-03-04 22:53:48 +0100 |
commit | 1561e545ebd8adedfd1c706c370f485b0a938c6c (patch) | |
tree | 587cee3fc1f964f351850f960ee0cf87ad003ee5 /sql/ha_myisam.h | |
parent | f7207b51a2f8bfa4ee1a4a9c424020bad8fd51bd (diff) | |
download | mariadb-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/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 2 |
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 ¶m, bool optimize); |