summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2001-05-24 13:14:25 +0200
committerserg@serg.mysql.com <>2001-05-24 13:14:25 +0200
commitc3039e80053caaa3a0c08ee5d0eb8eb0b79ab0bc (patch)
tree10377fbee77e1cf260ad739e99d78ff27c26e8d4 /sql/ha_myisam.h
parentf2dee22a7f8c4312215278f46d149c2c0ba68796 (diff)
downloadmariadb-git-c3039e80053caaa3a0c08ee5d0eb8eb0b79ab0bc.tar.gz
ALTER TABLE ... DISABLE/ENABLE KEYS, code cleanup
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r--sql/ha_myisam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h
index 6451e2b80ee..21b7e5bbd39 100644
--- a/sql/ha_myisam.h
+++ b/sql/ha_myisam.h
@@ -37,11 +37,11 @@ extern ulong myisam_recover_options;
class ha_myisam: public handler
{
MI_INFO *file;
- uint int_option_flag;
+ uint int_option_flag,enable_activate_all_index;
int repair(THD *thd, MI_CHECK &param, bool optimize);
public:
- ha_myisam(TABLE *table): handler(table), file(0),
+ ha_myisam(TABLE *table): handler(table), file(0),enable_activate_all_index(1),
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 |