From 7c881e34ef78cd541cb98738215c8f062024dbad Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 21 Nov 2000 03:43:34 +0200 Subject: Fixed problem with auto-repair of MyISAM tables Fixed bug in ISAM and MyISAM when updating from multiple-processes Docs/manual.texi: Updated changelog client/mysqladmin.c: Upgraded version number because the change of llstr() is visible extra/perror.c: Added new error message include/my_base.h: Added HA_ERR_CRASHED_ON_USAGE isam/rnext.c: Fixed bug when updating from multiple-processes isam/rprev.c: Fixed bug when updating from multiple-processes libmysql/libmysql.c: Fixed that mysql->options.client_flag was used properly myisam/mi_locking.c: Fixed bug when updating from multiple-processes myisam/mi_open.c: Fixed bug when updating from multiple-processes Added HA_ERR_CRASHED_ON_USAGE myisam/mi_rnext.c: Fixed bug when updating from multiple-processes myisam/mi_rprev.c: Fixed bug when updating from multiple-processes myisam/myisamchk.c: Added HA_ERR_CRASHED_ON_USAGE sql/sql_base.cc: Fixed problem with auto-repair of MyISAM tables sql/table.cc: Fixed problem with auto-repair of MyISAM tables --- include/my_base.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/my_base.h') diff --git a/include/my_base.h b/include/my_base.h index 5c76b5a6bc3..5ab84fb3433 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -207,6 +207,7 @@ enum ha_base_keytype { #define HA_ERR_UNKNOWN_CHARSET 142 /* Can't open charset */ #define HA_ERR_WRONG_TABLE_DEF 143 #define HA_ERR_CRASHED_ON_REPAIR 144 /* Last (automatic?) repair failed */ +#define HA_ERR_CRASHED_ON_USAGE 145 /* Table must be repaired */ /* Other constants */ -- cgit v1.2.1