summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authormydev@mysql.com <>2004-03-04 22:53:48 +0100
committermydev@mysql.com <>2004-03-04 22:53:48 +0100
commit3d13fb00b3156cbfb8c0dea79f91fa83a530adc4 (patch)
tree587cee3fc1f964f351850f960ee0cf87ad003ee5 /sql/ha_myisam.h
parent16dccfae3c56bd557fc00c5d0190e8b211ac6afd (diff)
downloadmariadb-git-3d13fb00b3156cbfb8c0dea79f91fa83a530adc4.tar.gz
Fixed a type mismatch between int_table_flags and table_flags() in MyISAM handler.
Diffstat (limited to 'sql/ha_myisam.h')
-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);