diff options
author | serg@serg.mysql.com <> | 2002-03-13 17:20:17 +0000 |
---|---|---|
committer | serg@serg.mysql.com <> | 2002-03-13 17:20:17 +0000 |
commit | 3f51fcf1f16653d6e4aff39a7b168ff1e8573870 (patch) | |
tree | 139ad5717d9b91fd8556d7463a529e063b8c5480 /sql/handler.h | |
parent | 2cac65ab72e367ec335911faacfdf933724215fd (diff) | |
download | mariadb-git-3f51fcf1f16653d6e4aff39a7b168ff1e8573870.tar.gz |
mi_check flags cleanup
CHECK/REPAIR syntax cleanup
REPAIR ... USE_FRM syntax
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sql/handler.h b/sql/handler.h index b083465afc5..fd59dabce3e 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -174,14 +174,11 @@ extern ulong myisam_sort_buffer_size; typedef struct st_ha_check_opt { ulong sort_buffer_size; - uint flags; - bool quick; - bool changed_files; - bool optimize; - bool retry_without_quick; + uint flags; /* isam layer flags (e.g. for myisamchk) */ + uint sql_flags; /* sql layer flags - for something myisamchk cannot do */ inline void init() { - flags= 0; quick= optimize= retry_without_quick=0; + flags= sql_flags= 0; sort_buffer_size = myisam_sort_buffer_size; } } HA_CHECK_OPT; |