mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixed a type mismatch between int_table_flags and table_flags() in MyISAM handler.
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
This commit is contained in:
@ -95,6 +95,7 @@ monty@work.mysql.com
|
|||||||
mwagner@cash.mwagner.org
|
mwagner@cash.mwagner.org
|
||||||
mwagner@evoq.mwagner.org
|
mwagner@evoq.mwagner.org
|
||||||
mwagner@work.mysql.com
|
mwagner@work.mysql.com
|
||||||
|
mydev@mysql.com
|
||||||
mysql@home.(none)
|
mysql@home.(none)
|
||||||
mysqldev@build.mysql2.com
|
mysqldev@build.mysql2.com
|
||||||
nick@mysql.com
|
nick@mysql.com
|
||||||
|
@ -37,7 +37,7 @@ extern ulong myisam_recover_options;
|
|||||||
class ha_myisam: public handler
|
class ha_myisam: public handler
|
||||||
{
|
{
|
||||||
MI_INFO *file;
|
MI_INFO *file;
|
||||||
uint int_table_flags;
|
ulong int_table_flags;
|
||||||
char *data_file_name, *index_file_name;
|
char *data_file_name, *index_file_name;
|
||||||
bool enable_activate_all_index;
|
bool enable_activate_all_index;
|
||||||
int repair(THD *thd, MI_CHECK ¶m, bool optimize);
|
int repair(THD *thd, MI_CHECK ¶m, bool optimize);
|
||||||
|
Reference in New Issue
Block a user