diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/myisam.h | 1 | ||||
-rw-r--r-- | include/mysqld_error.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/myisam.h b/include/myisam.h index 0183098a385..d198d6af80e 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -353,6 +353,7 @@ typedef struct st_mi_sortinfo { /* functions in mi_check */ void myisamchk_init(MI_CHECK *param); +int chk_status(MI_CHECK *param, MI_INFO *info); int chk_del(MI_CHECK *param, register MI_INFO *info, uint test_flag); int chk_size(MI_CHECK *param, MI_INFO *info); int chk_key(MI_CHECK *param, MI_INFO *info); diff --git a/include/mysqld_error.h b/include/mysqld_error.h index 718b734ef6d..59623210473 100644 --- a/include/mysqld_error.h +++ b/include/mysqld_error.h @@ -194,4 +194,6 @@ #define ER_FT_MATCHING_KEY_NOT_FOUND 1191 #define ER_LOCK_OR_ACTIVE_TRANSACTION 1192 #define ER_UNKNOWN_SYSTEM_VARIABLE 1193 -#define ER_ERROR_MESSAGES 194 +#define ER_CRASHED_ON_USAGE 1194 +#define ER_CRASHED_ON_REPAIR 1195 +#define ER_ERROR_MESSAGES 196 |