summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authorunknown <monty@tik.mysql.fi>2001-07-11 10:36:22 +0300
committerunknown <monty@tik.mysql.fi>2001-07-11 10:36:22 +0300
commit961cd9e91a05864e6fcaccc9ed2fd41b1ce0be07 (patch)
tree67dbdcecf5e9d4f027232016900ded0552e4f5bd /sql/ha_myisam.h
parentbfefbf8b3b05f3cefe3dda0d8e1454af7237527e (diff)
downloadmariadb-git-961cd9e91a05864e6fcaccc9ed2fd41b1ce0be07.tar.gz
Added back old code that Sasha removed
mysql-test/r/show_check.result: Added back old code sql/ha_myisam.h: Removed warning sql/mysql_priv.h: Added back old code sql/sql_base.cc: Added back old code sql/sql_parse.cc: Added back old code sql/sql_show.cc: Added back old code
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r--sql/ha_myisam.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h
index ca5007228d8..d870331e750 100644
--- a/sql/ha_myisam.h
+++ b/sql/ha_myisam.h
@@ -37,17 +37,19 @@ extern ulong myisam_recover_options;
class ha_myisam: public handler
{
MI_INFO *file;
- uint int_option_flag,enable_activate_all_index;
+ uint int_option_flag;
char *data_file_name, *index_file_name;
+ bool enable_activate_all_index;
int repair(THD *thd, MI_CHECK &param, bool optimize);
public:
- ha_myisam(TABLE *table): handler(table), file(0),enable_activate_all_index(1),
+ ha_myisam(TABLE *table): handler(table), file(0),
int_option_flag(HA_READ_NEXT | HA_READ_PREV | HA_READ_RND_SAME |
HA_KEYPOS_TO_RNDPOS | HA_READ_ORDER | HA_LASTKEY_ORDER |
HA_HAVE_KEY_READ_ONLY | HA_READ_NOT_EXACT_KEY |
HA_LONGLONG_KEYS | HA_NULL_KEY |
- HA_DUPP_POS | HA_BLOB_KEY | HA_AUTO_PART_KEY)
+ HA_DUPP_POS | HA_BLOB_KEY | HA_AUTO_PART_KEY),
+ enable_activate_all_index(1)
{}
~ha_myisam() {}
const char *table_type() const { return "MyISAM"; }