mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
mi_check flags cleanup
CHECK/REPAIR syntax cleanup REPAIR ... USE_FRM syntax include/myisam.h: mi_check flags cleanup myisam/mi_check.c: mi_check flags cleanup myisam/myisamchk.c: mi_check flags cleanup mysql-test/r/check.result: CHECK/REPAIR syntax cleanup mysql-test/r/show_check.result: CHECK/REPAIR syntax cleanup mysql-test/t/check.test: CHECK/REPAIR syntax cleanup mysql-test/t/show_check.test: CHECK/REPAIR syntax cleanup sql/ha_myisam.cc: mi_check flags cleanup sql/handler.h: mi_check flags cleanup sql/lex.h: REPAIR ... USE_FRM syntax sql/slave.cc: mi_check flags cleanup
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user